There isn't. If you want one, you could go the the suggestions forum and see about that whole thing. I think this script could replace it though:
if <<(variable) < ([high number] + (1))> and <(variable) > ([low number] - (1))>> then do stuff endI think it will work, but I'm not sure.
Last edited by PullJosh (2012-03-24 09:33:35)
Offline
PullJosh wrote:
There isn't. If you want one, you could go the the suggestions forum and see about that whole thing. I think this script could replace it though:
if <<(variable) < ([high number] + (1))> and <(variable) > ([low number] - (1))>> then do stuff endI think it will work, but I'm not sure.
That will cause glitches when working with decimals. Use this instead:
if < <not <(input) > (high)> > and <not <(input) < (low) > > > do stuff end
Last edited by Greenatic (2012-03-24 10:54:23)
Offline
Greenatic wrote:
PullJosh wrote:
There isn't. If you want one, you could go the the suggestions forum and see about that whole thing. I think this script could replace it though:
if <<(variable) < ([high number] + (1))> and <(variable) > ([low number] - (1))>> then do stuff endI think it will work, but I'm not sure.That will cause glitches when working with decimals. Use this instead:
if < <not <(input) > (high)> > and <not <(input) < (low) > > > do stuff end
Thanks, i'll try it out.
Last edited by Qaze (2012-03-24 12:50:06)
Offline