SA-MP Forums Archive
Make it shorter? - 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: Make it shorter? (/showthread.php?tid=375573)



Make it shorter? - Whizion - 07.09.2012

I knew but i forgot, how do you make this shorter:

1) variable_a >= 1 && variable_a < 10
2) variable_a != 0 && variable_a >= 100

Thanks!


Re: Make it shorter? - Vince - 07.09.2012

pawn Код:
1 <= variable_a < 10
Second is just the last part, because if it's greater than 100, it's obviously not 0.