11.12.2015, 19:26
I have a question , how can i make if a player is Civillian the TextDraw Color under the map is GREY and when he is PD or other faction is Blue or something else
This is what i've tried to do but it will show me GREY
Код:
TextDrawShowForPlayer(playerid, Textdraw0); 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); }
This is what i've tried to do but it will show me GREY