PHP Code:
public plugin_init() {
register_message(get_user_msgid("TextMsg") , "editTextMsg");
}
public editTextMsg() {
new string[ 100 ];
get_msg_arg_string(2, string, charsmax(string));
if( containi(string, "#Game_will_restart") != -1 )
return PLUGIN_HANDLED;
}