Advertisement
IdoGame

Block Chat commands

Jan 14th, 2015
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. #include <amxmodx>
  3. #include <amxmisc>
  4. new const Commands[][] = {
  5. "/help",
  6. "fuck",
  7. "Aima sha alay",
  8. "Savta",
  9. "Doda"
  10. }
  11. public plugin_init() {
  12. register_plugin("Block Chat Commands","1.6", "flane")
  13. register_clcmd("say","SayCmd")
  14. }
  15. public SayCmd(client)
  16. {
  17. new Message[192]
  18. read_args(Message,191)
  19. remove_quotes(Message)
  20. for(new i;i < sizeof Commands;i++){
  21. if(equali(Message,Commands[i]))
  22. return 1;
  23. }
  24. return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement