SA-MP Forums Archive
Functions problem - 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: Functions problem (/showthread.php?tid=346683)



Functions problem - calin1996 - 29.05.2012

Errors:
pawn Код:
D:\Lucru\1.3 samp 0.3e\gamemodes\inaintedetaxi2.pwn(38807) : error 029: invalid expression, assumed zero
D:\Lucru\1.3 samp 0.3e\gamemodes\inaintedetaxi2.pwn(38807) : error 029: invalid expression, assumed zero
D:\Lucru\1.3 samp 0.3e\gamemodes\inaintedetaxi2.pwn(38807) : error 029: invalid expression, assumed zero
D:\Lucru\1.3 samp 0.3e\gamemodes\inaintedetaxi2.pwn(38807) : fatal error 107: too many error messages on one line
Lines:
pawn Код:
if((PlayerInfo[playerid][pMember] >=8) && (PlayerInfo[playerid][pMember] =< 17) || (PlayerInfo[playerid][pLeader] >=8) && (PlayerInfo[playerid][pLeader] =< 17))



Re: Functions problem - ViniBorn - 29.05.2012

pawn Код:
if((PlayerInfo[playerid][pMember] >= 8 && PlayerInfo[playerid][pMember] <= 17) || (PlayerInfo[playerid][pLeader] >=8 && PlayerInfo[playerid][pLeader] <= 17))



Re: Functions problem - calin1996 - 29.05.2012

Quote:
Originally Posted by Viniborn
Посмотреть сообщение
pawn Код:
if((PlayerInfo[playerid][pMember] >= 8 && PlayerInfo[playerid][pMember] <= 17) || (PlayerInfo[playerid][pLeader] >=8 && PlayerInfo[playerid][pLeader] <= 17))
THX,rep+