19.03.2011, 13:00
Well you're checking if PlayerInfo[playerid][pCop] > 1, if I understand correctly, in your code, when they are cops, that value is set to 1, right? You're checking if it's over 1, so you need to change that check to either of the following:
Both will do the same thing, this is all assuming that the value of that variable is 1 when the person is a cop.
pawn Код:
PlayerInfo[playerid][pCop] >= 1
PlayerInfo[playerid][pCop] > 0