Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include <amxmodx>
  4. #include <amxmisc>
  5.  
  6. #define PLUGIN "New Plug-In"
  7. #define VERSION "1.0"
  8. #define AUTHOR "nacknic"
  9.  
  10.  
  11. public plugin_init() {
  12. register_plugin(PLUGIN, VERSION, AUTHOR)
  13. register_clcmd("say", "NacknicCommands")
  14. }
  15.  
  16. public NacknicCommands(id) {
  17. static args[51],command[11], x, y
  18. read_args(args, charsmax(args))
  19. remove_quotes(args);
  20. strbreak(args, command, charsmax(command), args, charsmax(args))
  21. if(equali(command, "!command")) {
  22. if(args != "") {
  23. client_print(id, print_chat, "%s", args)
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement