AXE 0 Posted February 28, 2003 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 Share this post Link to post Share on other sites
bn880 5 Posted February 28, 2003 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