Non-threaded ViewNon-threaded View

Forums » Advanced Editor Forum » Read Message

Talk about it. Ask for help on it. Compliment it.

Need Scripting for 'Between'

10 months 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'

10 months ago

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

 

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

Need Scripting for 'Between'

10 months ago

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