Hello. I'm using a plugin for unlimited ammo, but I want the plugin to show a message when the client press the reload button. The command is "+reload" so I tried this:
PHP Code:
register_clcmd("+reload", "ShowMessage")
public ShowMessage(id)
{
client_print(id, print_center, "You don't need to recharge.")
}
But no success

, also tried with register_concmd, the same. How can I do to register a command like "+command" ? Thank you in advance.