public OnPluginStart()
{
AddCommandListener(HookPlayerChat, "say");
AddCommandListener(HookPlayerChat, "say_team");
}
public Action:HookPlayerChat(client, const String:command[], args)
{
decl String:text[2];
GetCmdArg(1, text, 2);
return text[0] == '!' || text[0] == '/' ? Plugin_Handled:Plugin_Continue;
}