Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #define COLOR_TWAQUA 0x00FFFFAA
- new randomMessages[][] =
- {
- "[SERVER:] Test1",
- "[SERVER:] Test2",
- "[SERVER:] Test3"
- };
- public OnFilterScriptInit()
- {
- SetTimer("RandomMessages", 60000, true);
- return 1;
- }
- forward RandomMessages();
- public RandomMessages()
- {
- new randomMsg = random(sizeof(randomMessages));
- SendClientMessageToAll(COLOR_TWAQUA, randomMessages[randomMsg]);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement