14.01.2013, 14:12
Updated!
Added "SetPlayerColor(playerid, SendClientMessageToAll(0xAAFFCC00, string));" but it makes player name BLACK, this is not a nice color. How to change this? I dont understand.
Thank You!
pawn Код:
if (AccInfo[playerid][Hide] == 0)
{
if(AccInfo[playerid][Level] > 0)
{
new string[150], name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
format(string,sizeof(string),"%s: {FFFFFF}%s", name, text);
SetPlayerColor(playerid, SendClientMessageToAll(0xAAFFCC00, string));
return 0;
}
return 1;
}
Thank You!