Define a colour to playerid variable [+1 rep]
#6

pawn Код:
switch(playerid)
{
    case 0: SetPlayerColor(playerid, 0x24FF0AB9); // Sets green color to playerid 0.
    case 1: // Same here with color you want for id 1.
}
Its one way to do it, but alot of work if you want evey single player with different colors. That one can be used after login to set player color.

Here is another way of doing it, under OnPlayerText;
pawn Код:
switch(playerid)
{
    case 0: SendClientMessageToAll(0x24FF0AB9, text);
    case 1: // Same here with color you want for id 1.
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)