28.08.2011, 18:36
Here is my code:
Iam an Admin, but Im also president. I want it to set my color to yellow if Im president. But it always makes it white. Why?
pawn Код:
if(President[playerid] == 1)//Under OnPlayerSpawn
{
SetPlayerColor(playerid,yellow);
}
else
{
if(IsPlayerXAdmin(playerid) || IsPlayerVIP(playerid))
{
SetPlayerColor(playerid,white);
}
}