Please help me... who knows how to add a costum flag to this plugin PHP Code:
#include <amxmod>
public hook_say()
{
if (get_cvar_num("blocksay"))
return PLUGIN_HANDLED
return PLUGIN_CONTINUE
}
public plugin_init()
{
register_plugin("block say", "1", "Petey B")
register_clcmd("say", "hook_say")
register_clcmd("say_team", "hook_say")
register_cvar("blocksay","1")
}