Advertisement
Froki

Untitled

Oct 5th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include <amxmodx>
  4. #include <amxmisc>
  5. #include <colorchat>
  6.  
  7. #define PLUGIN "New Plug-In"
  8. #define VERSION "1.0"
  9. #define AUTHOR "author"
  10.  
  11.  
  12. public plugin_init() {
  13. register_plugin(PLUGIN, VERSION, AUTHOR)
  14.  
  15. register_clcmd("radio1", "block");
  16. register_clcmd("radio2", "block");
  17. register_clcmd("radio3", "block");
  18. register_clcmd("+voicerecord", "block");
  19. }
  20.  
  21. public block(id)
  22. {
  23. ColorChat(id, TEAM_COLOR, "^x3Radio je iskjucen");
  24. return PLUGIN_HANDLED;
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement