12.07.2012, 13:08
Change
to:
EDIT: You've actually got this all through your script, normal players can even ban people 0_o
Change all the >= to <
pawn Код:
if(PInfo[playerid][Level] >= 5) return SendClientMessage(playerid,red,error);
pawn Код:
if(PInfo[playerid][Level] < 5) return SendClientMessage(playerid,red,error);
Change all the >= to <