"_x ordergetin = true" foreach units RF6
Careful... that's not quite right
The syntax for the ordergetin command is:
array of units ordergetin
booleanNot:
unit ordergetin
booleanSo... this means that if you want to order many units (ie. a group), you would use:
(units
RF6) ordergetin true
As (units
RF6) is an array. A foreach command will make OFP throw an error message at you
Also, if you want to order just one unit to get in, you must use:
[
unit ] ordergetin true
The square brackets make it an array, even if there is only one unit in it... happy editing