Then you debug it.
Code:
register_message( get_user_msgid( "TextMsg" ), "msg_TextMsg" );
public msg_TextMsg( msgid, dest, id )
{
static text_msg[ 128 ];
get_msg_arg_string( 2, text_msg, charsmax(text_msg) );
server_print("msg_TextMsg(%d, %d, %d): %s", msgid, dest, id, text_msg);
I've never seen any message containing the strings you are comparing to.
* is not a placeholder matching "anything".
You're using the case-sensitive version of contain in which case "Can't" is probably wrong.
__________________