m'kay, i have (with a script) sent various loons into buildings and set them up at windows to fire through. fine. when the battle is over, however, and i want them to follow their commander to the evac point, they won't budge.
the script is called using [unit, building, buildingpos] exec "into_building.sqs", which looks like this -
;get units into buildings and have them stay there
_who = _this select 0
_building = _this select 1
_where = _this select 2
_who domove (_building buildingpos _where)
@(unitready _who)
dostop _who
_who setunitpos "up"
exit
as you can see there's a dostop command in there. which i always thought was over-ridden by the dofollow command, but not so it seems...
i tried issuing them with a direct domove command, but still nothing.
if i am the commander, though, and tell them to 'return to formation' out they come...
is dofollow not the equivalent of 'return to formation'?