Greater Than but Lesser - 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: Greater Than but Lesser (
/showthread.php?tid=659149)
Greater Than but Lesser -
Zeus666 - 25.09.2018
if(pInfo[playerid][pAmmo2] <= 60 || > 0)
Is this a a good way to say "is between 1 and 60" ?
Re: Greater Than but Lesser -
NoteND - 25.09.2018
if(pInfo[playerid][pAmmo2] < 1 || pInfo[playerid][pAmmo2] > 60)
Re: Greater Than but Lesser -
Zeus666 - 25.09.2018
Thanks to both.