Advertisement
Guest User

Untitled

a guest
Jul 27th, 2009
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. #include <a_samp>
  2. #define FILTERSCRIPT
  3.  
  4. forward gmname1();
  5. forward gmname2();
  6.  
  7.  
  8.  
  9. public OnFilterScriptInit()
  10. {
  11. print("\n--------------------------------------");
  12. print(" [FS] Gamemode Name Changing ");
  13. print("--------------------------------------\n");
  14.  
  15.  
  16.  
  17. SetTimer("gm2",7000,false);
  18.  
  19. return 1;
  20. }
  21.  
  22. public OnFilterScriptExit()
  23. {
  24. return 1;
  25. }
  26.  
  27. public OnPlayerSpawn(playerid)
  28. {
  29. SendClientMessage(playerid,0xFFFF00AA," This Server Is Using [ERD]MiDNiGhT FS Gamemode Name Changing");
  30. return 1;
  31. }
  32. public gmname1()
  33. {
  34. SetGameModeText("Your Gamemode Name");
  35. SetTimer("gm1",7000,false);
  36. return 1;
  37. }
  38. public gmname2()
  39. {
  40. SetGameModeText("Your Gamemode Name 2");
  41. SetTimer("gm2",7000,false);
  42. return 1;
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement