Maybe leak is here ?
PHP Code:
if( get_user_flags( sndr ) & FLAG && ( namecol != 0 || msgcol != 2 ) )
{//execute if sndr is admin and cols are not set to engine defaults
if( !same_as_last ) buildmsg( sndr, is_sndr_spec, is_team_msg, sndr_team, namecol, msgcol, str4 )
set_msg_arg_string( 2, msg )
set_msg_arg_string( 4, "" )
}//i think here should be else if i'm not wrong
I think it should be something like this :
PHP Code:
if( get_user_flags( sndr ) & FLAG && ( namecol != 0 || msgcol != 2 ) )
{//execute if sndr is admin and cols are not set to engine defaults
if( !same_as_last ) buildmsg( sndr, is_sndr_spec, is_team_msg, sndr_team, namecol, msgcol, str4 )
set_msg_arg_string( 2, msg )
set_msg_arg_string( 4, "" )
}else{
set_msg_arg_string(// i have no ideea what u should put here )
set_msg_arg_string(// i have no ideea what u should put here )
}