#include <amxmodx>
new const g_sFireInTheHole[] = "#Fire_in_the_hole";
new text[sizeof(g_sFireInTheHole)];
public plugin_init()
{
register_plugin("Block grande info", "1.0", "neygomon");
register_message(get_user_msgid("TextMsg"),"msgTextMsg");
}
public msgTextMsg()
{
if(get_msg_args() == 5 && get_msg_argtype(5) == ARG_STRING)
{
get_msg_arg_string(5, text, sizeof text - 1);
if(equali(text, g_sFireInTheHole)) return PLUGIN_HANDLED
}
return PLUGIN_CONTINUE
}