Advertisement
Guest User

Hostname Changer

a guest
Sep 18th, 2012
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. ////===========================================///
  2. ////==Server Name Changer !!!!!!!!!!!!!!!!!!!==///
  3. ////===========================================///
  4.  
  5.  
  6. #include <a_samp>
  7.  
  8.  
  9. forward hostname();
  10.  
  11. public OnFilterScriptInit()
  12. {
  13. SetTimer("hostname",50,1);//<<< Nachricht Wechseln(1000 = 1 second)
  14. return 1;
  15. }
  16.  
  17.  
  18. public hostname()
  19. {
  20. new var = random(5);
  21. switch (var)
  22. {
  23. case 0: SendRconCommand("hostname German VIP Reallife | v0.4 *Join Us*");
  24. case 1: SendRconCommand("hostname German VIP Reallife | www.vipcraft.de");
  25. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement