Guest User

Untitled

a guest
Mar 2nd, 2012
533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. #define FILTERSCRIPT
  4.  
  5. #define G 0x99FF9900
  6. #define R 0xAA3333AA
  7.  
  8. public OnFilterScriptInit()
  9. {
  10. print("\n-----------------------------------------");
  11. print("---- | /Rules Cmd LOaded By ChrOnic Loaded | -----");
  12. print("Most Reliable , Useful Command on SA-MP.");
  13. print("-------------------------------------------\n");
  14.  
  15.  
  16. return 1;
  17. }
  18.  
  19. public OnFilterScriptExit()
  20. {
  21. return 1;
  22. }
  23. public OnPlayerCommandText(playerid, cmdtext[])
  24. {
  25. if(strcmp(cmdtext,"/rules",true)==0)
  26. {
  27. SendClientMessage(playerid,R,"_------Your Server Name Rules----_");
  28. SendClientMessage(playerid,G,"Your Rule Here");
  29. SendClientMessage(playerid,G,"Your Rule Here");
  30. SendClientMessage(playerid,G,"Your rule Here");
  31. SendClientMessage(playerid,G,"Your Rule Here");
  32. SendClientMessage(playerid,G,"Your Rule Here");
  33. SendClientMessage(playerid,G,"Your Rule Here");
  34. SendClientMessage(playerid,G,"Your Rule Here");
  35. SendClientMessage(playerid,R,"_--------------------------------_");
  36. return 1;
  37. }
  38. return 0;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment