Advertisement
DecaK

Untitled

Feb 8th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include <amxmodx>
  2. #include <amxmisc>
  3.  
  4. public plugin_init()
  5. register_plugin("No / commands", "1.0", "DecaK")
  6.  
  7. public client_command(id) {
  8. new sayed[20];
  9. read_argv(0, sayed, charsmax(sayed));
  10. new b = containi(sayed, "/")
  11. if(b > -1 && b < 7) return PLUGIN_HANDLED;
  12. return PLUGIN_CONTINUE;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement