SA-MP Forums Archive
How to fix this line??? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: How to fix this line??? (/showthread.php?tid=345312)



How to fix this line??? - Audi_Quattrix - 24.05.2012

I dont know how to make this line I know it is easy but could someone help?
pawn Код:
if(PlayerInfo[playerid][pAdmin] >= 4 || (IsPlayerAdmin)) {



Re: How to fix this line??? - MadeMan - 24.05.2012

pawn Код:
if(PlayerInfo[playerid][pAdmin] >= 4 || IsPlayerAdmin(playerid)) {



Re: How to fix this line??? - $$inSane - 24.05.2012

pawn Код:
new PlayerInfo[MAX_PLAYERS][pAdmin];

if(PlayerInfo[playerid][pAdmin] >= 4 || IsPlayerAdmin(playerid)) {



Re: How to fix this line??? - Audi_Quattrix - 24.05.2012

Thanks

EDIT: $$in First was ok dont need that :P