Jump to content
Sign in to follow this  
AXE

Simple question about if/then statements

Recommended Posts

Ok here is my question.

if ((speed this) >= 200) then {titletext ["sometext", "PLAIN"]}

this works, but i want it to be >=200 and <=400

so how would I do this? I just need some help with the

syntax smile.gif

Share this post


Link to post
Share on other sites

You almost had it

if ((speed this) >= 200 and (speed this) <= 400)

OR

if ((speed this) >= 200 && (speed this) <= 400)

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×