02.08.2018, 15:50
Try this
PHP код:
foreach(new i : Player)
{
if(!PlayerInfo[i][pBackup])
{
if(GetPVarInt(i, "Jailed") > 0) {
SetPlayerColor(i, 0xAD7A21FF);
} else if(PlayerInfo[i][pFaction] >= 0 && PlayerInfo[i][pDuty] && FactionInfo[PlayerInfo[i][pFaction]][fType] != FACTION_HITMAN) {
SetPlayerColor(i, FactionInfo[PlayerInfo[i][pFaction]][fColor] & ~0xff);
} else if(GetPlayerJob(i, JOB_TAXIDRIVER) && GetPVarInt(i, "TaxiFare") > 0) {
SetPlayerColor(i, 0xF5DEB3FF);
} else {
SetPlayerColor(i, 0xFFFFFFFF);
}
}
}