How do i block this command?
I've tried, but doesn't work, it seems like it doesn't get hooked.. the print message isn't displaying aswell =\
Code:
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_concmd("gl_fog", "block")
register_clcmd("gl_fog", "block")
// Add your code here...
}
public block(id)
{
client_print(id, print_chat, "test")
return PLUGIN_HANDLED;
}
__________________