Non-threaded

Forums » Advanced Editor Forum » Read Thread

Get help from the experts on variables, scripts, items, and other scary things.

Need Scripting for 'Between'

13 years ago

Does anyone know the Expression for 'Between' when scripting?

EX:

IF %VARIABLE BETWEEN 1 AND 10 THEN (this sort of thing)...

Need Scripting for 'Between'

13 years ago

If %VARIABLE >= 1 AND %VARIABLE <= 10 THEN

 

Should work. (There is no Between function as far as I know)

Need Scripting for 'Between'

13 years ago

Hey thanks! I'll give it a try =)