24.07.2014, 16:38
pawn Код:
public OnPlayerText(playerid, text[])
{
new str[145], pname[24];
GetPlayerName(playerid, pname, sizeof (pname));
format(str, sizeof (str), "{FF0000}%s: {FFFFFF}%s", pname, text); // Change the hex to the color you want.
SendClientMessageToAll(-1, str);
return 0;
}