12.12.2015, 01:52
Quote:
You should change your textdraws to playertextdraws first, then change the color depending on what team they are in
|
OT:
Use TextDrawShowForPlayer after setting the color.
pawn Код:
if(PlayerInfo[playerid][pMember] < 1 || PlayerInfo[playerid][pLeader] < 1)
{
TextDrawColor(Textdraw0, COLOR_GREY);
}
if(PlayerInfo[playerid][pMember] == 1 || PlayerInfo[playerid][pLeader] == 1)
{
TextDrawColor(Textdraw0, 0x1732E8FF);
}
TextDrawShowForPlayer(playerid, Textdraw0);