Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include <amxmodx>
  4. #include <amxmisc>
  5. #include <cstrike>
  6.  
  7. #define PLUGIN "rules"
  8. #define VERSION "1.0"
  9. #define AUTHOR "PsychoPeq"
  10.  
  11.  
  12. public plugin_init() {
  13. register_plugin(PLUGIN, VERSION, AUTHOR)
  14. register_clcmd("say /rules", "rules")
  15.  
  16. }
  17.  
  18. public rules(id)
  19. {
  20. new Times[2];
  21.  
  22. client_print(id, print_chat, "1. Don't say bad words.", 1);
  23. client_print(id, print_chat, "2. Have fun!", 1);
  24. client_print(id, print_chat, "3. Don't copy my mod", 1);
  25. client_print(id, print_chat, "4. New server", 1);
  26. client_print(id, print_chat, "5. empty", 1);
  27. client_print(id, print_chat, "6. empty", 1);
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement