29.12.2011, 22:50
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.
}
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.
}