12.03.2014, 16:17
Quote:
Well i think he doesnt't want to send a message to all, but "all-1".
Try something like this: pawn Код:
|
pawn Код:
SendMessageToAllBut(playerid, color, const text[])
{
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(!IsPlayerConnected(i)) continue;
if(playerid == i) continue;
SendClientMessage(i, color, text);
}
}