Faction - 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: Faction (
/showthread.php?tid=368847)
Faction -
Roddan - 14.08.2012
Hello.
I get an error on this line when i try to compile:
PHP код:
if(pInfo[playerid][pAdmin] < 6) && pInfo[playerid][pRank] != 6; return SendClientMessage(playerid, -1, "You are not a high enough admin or you aren't the leader!");
Error:
Код:
error 029: invalid expression, assumed zero
Re: Faction -
ddnbb - 14.08.2012
pawn Код:
if(pInfo[playerid][pAdmin] < 6 && pInfo[playerid][pRank] != 6) return SendClientMessage(playerid, -1, "You are not a high enough admin or you aren't the leader!");