21.02.2014, 21:03
Where did you put this command? Look at the function, if it does not have function(playerid), you need to use
If you do want the message to be sent to an individual playerid, use a loop.
pawn Код:
SendClientMessageToAll(color, "text");
pawn Код:
// Loop through all players using:
for(new i = 0; i < MAX_PLAYERS; i++)
{
SendClientMessage(i, -1, "text"); // We defined i to be playerid, so send the message to "i"
}