11.04.2012, 14:38
pawn Code:
public OnPlayerText(playerid, text[])
{
new string[128], VBName[MAX_PLAYER_NAME];
GetPlayerName(playerid, VBName, MAX_PLAYER_NAME); // fix name
format(string, sizeof(string),"{FFDC00}[%d] {%h}%s:{FFFFFF} %s",playerid, GetPlayerColor(playerid) >>> 8, VBName,text); // fix colour :d
SendClientMessageToAll(-1,string);
return 0;
}