Guest User

Version 1

a guest
Jan 28th, 2013
1,489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. #include <a_samp>
  2. new ServerBot1_idx, ServerBot1[][] = {
  3. "Your Text",
  4. "Your Text",
  5. "Your Text",
  6. "Your Text"
  7. }; //To add another message, Create this way
  8. //"Your Text",
  9. //The last line without a comma "Your Text"
  10. main()
  11. {
  12. print("--------------------------------------------------");
  13. print(" Bot Script by HavingGood ");
  14. }
  15. public OnFilterScriptInit()
  16. {
  17. SetTimer("ServerBot2", (12000), 1);
  18. }
  19. forward ServerBot2();
  20. public ServerBot2()
  21. {
  22. if(ServerBot1_idx == sizeof(ServerBot1))
  23. ServerBot1_idx = 0;
  24. SendClientMessageToAll(, ServerBot1[ServerBot1_idx]);
  25. ServerBot1_idx ++;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment