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
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
You almost had it
if ((speed this) >= 200 and (speed this) <= 400)
OR
if ((speed this) >= 200 && (speed this) <= 400)
"Peace can not be kept by force. It can only be achieved by understanding." Albert Einstein
Please report Arma 3 bugs in the Bug Tracker
Thanks![]()