13.07.2011, 14:24
Use HEX codes infront of them. Get the color codes from www.colorpicker.com.
pawn Код:
public OnPlayerText(playerid, text[])
{
///{FFFFFF} = White
new name[24], string[128]; GetPlayerName(playerid, name, sizeof name);
format(string, sizeof string, "{FFFFFF}%i %s: %s ", playerid, name, text);
SendClientMessageToAll(GetPlayerColor(playerid), string);
return 0;
}