Quote:
Originally Posted by JaTochNietDan
Well you can just do
pawn Code:
new string[128]; new name[24]; GetPlayerName(playerid,name,sizeof(name)); format(string,sizeof(string),"%s: %s",name,text); SendClientMessageToAll(whatevercolor,string);
Put that in OnPlayerText and replace whatevercolor with the color you want, you can also make it so that it choses the color of their name by replacing whatevercolor with GetPlayerColor(playerid)
|
Also remember to return the function 0 or else it will display both messages.