01.03.2011, 17:53
Can i just add them in code end, like example i wanna make if player is lower than 3 stars wanted level then hes player icon color will be yellow then sould i do like:
Its seem like that wont work.
pawn Код:
Stock WantedColor(playerid)
{
if(GetPlayerWantedLevel(playerid) > 3)
{
SetPlayerColor(playerid,COLOR_YELLOW);
}
return 1;
}