29.12.2011, 23:12
Use colour embedding {RGB color here}.
First I turn the playerid to green then the message to white. 
Edit: Changed a thing in the code.
pawn Код:
public OnPlayerText(playerid, text[])
{
new string[128];
format(string, sizeof(string),"{24FF0A}[%d]{FFFFFF} %s",playerid, text);
SendPlayerMessageToAll(playerid,string);
return 0;
}

Edit: Changed a thing in the code.