Advertisement
eyal282

Jailbreak Commands Restrict

Dec 19th, 2013
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.43 KB | None | 0 0
  1. #include <amxmodx>
  2.  
  3. #define PLUGIN "Jailbreak Commands Restrict"
  4. #define VERSION "1.0"
  5. #define AUTHOR "eyal"
  6.  
  7.  
  8. public plugin_init() {
  9.     register_plugin(PLUGIN, VERSION, AUTHOR)
  10.    
  11.     register_clcmd("radio1", "CmdBlock")
  12.     register_clcmd("radio2", "CmdBlock")
  13.     register_clcmd("radio3", "CmdBlock")
  14.     register_clcmd("jointeam", "CmdBlock")
  15.     register_clcmd("chooseteam", "CmdBlock")
  16. }
  17. public CmdBlock(id)
  18. {
  19.     return PLUGIN_HANDLED;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement