Advertisement
Guest User

Untitled

a guest
Nov 1st, 2012
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. /* This Filterscript Was Created By, YamakeiStudios */
  2.  
  3. // This Filterscript Was Designed For Hostname Changing.
  4.  
  5.  
  6. #define FILTERSCRIPT
  7. #include <a_samp>
  8. #if defined FILTERSCRIPT
  9.  
  10. public OnFilterScriptInit()
  11. {
  12. print("\n--------------------------------------");
  13. print(" ( )-...Booting Hostname Changer.");
  14. print("--------------------------------------\n");
  15. return 1;
  16. }
  17.  
  18. public OnFilterScriptExit()
  19. {
  20. print("\n--------------------------------------");
  21. print(" ( )-...Discharging Hostname Changer");
  22. print("--------------------------------------\n");
  23. return 1;
  24. }
  25.  
  26. forward HostNameChanger();
  27. public HostNameChanger()
  28. {
  29. new RandomGo = random(4);
  30. switch(RandomGo) { //Modify the [Insert Text] for your text.
  31. case 0: SendRconCommand("hostname [SERVER NAME] [Insert Text]");
  32. case 1: SendRconCommand("hostname [SERVER NAME] [Insert Text]");
  33. case 2: SendRconCommand("hostname [SERVER NAME] [Insert Text]");
  34. case 3: SendRconCommand("hostname [SERVER NAME] [Insert Text]");
  35. }
  36. return 1;
  37. }
  38. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement