
Kod:
#include <amxmodx>
#include <reapi>
new const PLUGIN[] = "Remove_Symbol";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";
new Message[192];
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
register_clcmd("say", "Hook_Say");
register_clcmd("say_team", "Hook_Say");
}
public Hook_Say()
{
read_args(Message, 191);
remove_quotes(Message);
if(Message[0] == '@' || Message[0] == '!' || Message[0] == '/' || equal(Message, ""))
{
return PLUGIN_CONTINUE;
}
return PLUGIN_CONTINUE;
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/