Question just for personal knowledge. We have a lot of requests for script blockers, and since binds are client side, it is hard to block them, even if you write a plugin that gives an option to change a client side config, they can just rebind the keys after they select the option anyways.
So my questions is couldn't we just write a plugin that blocks the wait command? Would this work?
PHP Code:
#include <amxmodx>
public plugin_init()
register_clcmd("wait", "CmdWait");
public CmdWait(id)
return PLUGIN_HANDLED;
__________________