Does anyone know the Expression for 'Between' when scripting?
EX:
IF %VARIABLE BETWEEN 1 AND 10 THEN (this sort of thing)...
If %VARIABLE >= 1 AND %VARIABLE <= 10 THEN
Should work. (There is no Between function as far as I know)
Hey thanks! I'll give it a try =)