Advertisement
bgtracker

Untitled

May 25th, 2012
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.41 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. #define COLOR_TWAQUA 0x00FFFFAA
  4.  
  5. new randomMessages[][] =
  6. {
  7.     "[SERVER:] Test1",
  8.     "[SERVER:] Test2",
  9.     "[SERVER:] Test3"
  10.     };
  11.    
  12. public OnFilterScriptInit()
  13. {
  14.     SetTimer("RandomMessages", 60000, true);
  15.     return 1;
  16. }
  17.  
  18. forward RandomMessages();
  19. public RandomMessages()
  20. {
  21.     new randomMsg = random(sizeof(randomMessages));
  22.     SendClientMessageToAll(COLOR_TWAQUA, randomMessages[randomMsg]);
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement