Help whit error.
#4

Where did you put this command? Look at the function, if it does not have function(playerid), you need to use

pawn Код:
SendClientMessageToAll(color, "text");
If you do want the message to be sent to an individual playerid, use a loop.

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"
    }
Reply


Messages In This Thread
Help whit error. - by Roam - 21.02.2014, 20:38
Re: Help whit error. - by Dignity - 21.02.2014, 20:40
Re: Help whit error. - by Roam - 21.02.2014, 20:43
Re: Help whit error. - by Dignity - 21.02.2014, 21:03
Re: Help whit error. - by Roam - 21.02.2014, 21:32

Forum Jump:


Users browsing this thread: 1 Guest(s)