Quote:
Originally Posted by Konstantinos
pawn Код:
public OnPlayerText(playerid, text[]) { new chat[144], pname[21]; GetPlayerName(playerid, pname, sizeof (pname)); format(chat, sizeof (chat), "%d {%06x}%s{FFFFFF}: %s", playerid, GetPlayerColor(playerid) >>> 8, pname, text); SendClientMessageToAll(-1, chat); return 0; }
A note: GetPlayerColor will return nothing unless SetPlayerColor has been used!
|
Thanks friend, it works! ++;