在public plugin_init()加入
複製程式
register_message(get_user_msgid("TextMsg"), "message_textmsg")
在sma任意處放置
複製程式
// Block some text messages
public message_textmsg()
{
static textmsg[22]
get_msg_arg_string(2, textmsg, sizeof textmsg - 1);
// Block round end related messages
if (equal(textmsg, "#Hostages_Not_Rescued") || equal(textmsg, "#Round_Draw") || equal(textmsg, "#Terrorists_Win") || equal(textmsg, "#CTs_Win"))
{
return PLUGIN_HANDLED;
}
return PLUGIN_CONTINUE;
}
即可阻擋恐怖分子/反恐獲勝/平手訊息