well thats all i can say really, it just doesnt move the same happend to some paratroopers on i coop i made i used this script
; modefied script from BIS
; Parachute
_aunits = units (_this select 0)
_heli = _this select 1
_i = 0
_j = count _aunits
#Here
(_aunits select _i) action ["EJECT",_heli]
unassignvehicle (_aunits select _i)
[(_aunits select _i)] join GrpNull
(_aunits select _i) doMove getpos base
_i=_i+1
~1
?_j>_i:goto "Here"
exit
where base is the name of where i want them to move, as soon as they ejected they all just stood there when they landed. I think its something to do with the domove command has to only be executed on 1 pc, like the server or something. how can i go about doing this?