Quote:
Originally Posted by xerox8521
pawn Код:
if ( !IsPlayerConnected( i ) || ( i == exeptionid ) ) continue; SendClientMessage( i, color, string );
means if the i is not connected OR i is the exeptionid then the message will be send
pawn Код:
SendClientMessageToAllEx(0xFF0000AA,"This message cant read id 1",1);
so every player exept id 1 will get the message "This message cant read id 1"
|
Cool
Thank you very much for your help!