Im trying to get a feature in my plugin to be triggered when the user is firing his weapon but +attack don't work. In fact nothing with "+" in front of a command works. What causes +commands to fail?
Here's what I have.
PHP Code:
public plugin_init()
{
register_clcmd("+attack", "fire_restrict")
register_clcmd("-attack", "restore")
}
I even added a hud message to see if what I added in the code block was at fault but no hud message appeared so the code block isn't being triggered at all.
__________________