Advertisement
Guest User

Untitled

a guest
May 4th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. #include a_samp
  2.  
  3. new timer;
  4.  
  5. public OnGameModeInit()
  6. {
  7. timer = SetTimer("hostname",10000,1);//Здесь находится время смены имени хостинга(1000 = 1 second)
  8. return 1;
  9. }
  10.  
  11. public OnGameModeExit()
  12. {
  13. KillTimer(timer);
  14. return 1;
  15. }
  16.  
  17. forward hostname();
  18. public hostname()
  19. {
  20. switch (random(5))
  21. {
  22. case 0: SendRconCommand("hostname ваше название![0]");
  23. case 1: SendRconCommand("hostname ваше название![1]");
  24. case 2: SendRconCommand("hostname ваше название![2]");
  25. case 3: SendRconCommand("hostname ваше название![3]");
  26. case 4: SendRconCommand("hostname ваше название![4]");
  27. case 5: SendRconCommand("hostname ваше название![5]");
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement