02.06.2016, 12:21
Have a loop through the players and if the iterator variable is equal to the playerid, skip it.
pawn Код:
for (new i = 0, j = GetPlayerPoolSize(); i <= j; i++) // foreach(new i : Player)
{
if (i == playerid) continue;
SendClientMessage(i, ...);
}