28.02.2010, 13:08
Or this.
Something like that would work
pawn Код:
public OnPlayerText(playerid, text[]) // or what it is
{
new string[128], pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
format(string, sizeof(string), "[%i]%s: %s", playerid, pName, text);
SendClientMessageToAll(0xFFFFFF, string);
return 1;
}