commandercaleb 11 Posted July 18, 2015 (edited) So, i've looked everywhere and I keep coming across commands that make the AI just stay still and be in a crouch position or standing up position. Is there a trigger command to just make the AI not go prone at all but still able to go into the other two stances? Thanks! EDIT: {_x setunitpos "UP,"} foreach thislist; seems to work but they only stand up, I want the units to be able to choose between crouching and standing up. Edited July 19, 2015 by CommanderCaleb 1 Share this post Link to post Share on other sites
pierremgi 4906 Posted July 19, 2015 AI don't have "choice"! You have to decide in which case Ai are up or crouch. Or you can do a random possibility with _array = ["UP", "MIDDLE"]; {_x setunitpos _array select (floor random 2)} foreach thislist; Share this post Link to post Share on other sites
shuko 59 Posted July 19, 2015 Everyone go vote: http://feedback.arma3.com/view.php?id=15249 Share this post Link to post Share on other sites
Kingsley1997 39 Posted July 22, 2015 One way to accomplish this would be to check the AI units stance every X seconds and if it's prone then randomly pick crouch or stand up. Wouldn't be very fast if you had lots of AI though... Share this post Link to post Share on other sites
3l0ckad3 17 Posted September 7, 2015 I too would like to see an argument on this. Share this post Link to post Share on other sites