Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <amxmodx>
- #include <reapi>
- public plugin_init()
- {
- RegisterHookChain RH_ExecuteServerStringCmd, ("ExecuteServerString");
- }
- public ExecuteServerString(cmd[], source, id)
- {
- server_print("%s", cmd)
- //server_print("command: %s | %d | %d | %n", cmd, source, id, id)
- if (equali(cmd, "status"))
- {
- console_print(id, "Unknown command: %s", cmd)
- return HC_SUPERCEDE
- }
- return HC_CONTINUE
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement