SA-MP Forums Archive
I cant get i work - 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: I cant get i work (/showthread.php?tid=357959)



I cant get i work - hulitubolies - 08.07.2012

pawn Код:
if(!IsACop(playerid) !IsAFIB(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You are not an SAPD Oficer.");
Mhm its not working what is the problem ??

Код:
D:\Documents and Settings\ScOuT3221\Desktop\SAMPSERVER\gamemodes\ZRP.pwn(8151) : error 001: expected token: ")", but found "!"
D:\Documents and Settings\ScOuT3221\Desktop\SAMPSERVER\gamemodes\ZRP.pwn(8151) : error 001: expected token: ";", but found ")"
D:\Documents and Settings\ScOuT3221\Desktop\SAMPSERVER\gamemodes\ZRP.pwn(8151) : error 029: invalid expression, assumed zero
D:\Documents and Settings\ScOuT3221\Desktop\SAMPSERVER\gamemodes\ZRP.pwn(8151) : fatal error 107: too many error messages on one line
This is what compiler says !


Re: I cant get i work - Vince - 08.07.2012

pawn Код:
if(!IsACop(playerid) && !IsAFIB(playerid))
&& AND
|| OR
! NOT


Re: I cant get i work - hulitubolies - 08.07.2012

Thx Alot man !