03.09.2012, 20:41
Quote:
|
Find "public OnPlayerText" and replace it with:
pawn Код:
|
pawn Код:
public OnPlayerText(playerid, text[])
{
new string[148];
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid,aname,sizeof(aname));
format(string,sizeof(string),"%s[%d]{FFFFFF}: %s",aname,playerid,text);
SendClientMessageToAll(GetPlayerColor(playerid),string);
return 0;
}


