i'm using the following script by SelectThis to move multiple groups.
--------------------------
;//Parameters to pass
;// _Group is the group you want to move
_Group = _this select 0
_GroupLeader = Leader _Group
;//check to see if _group has any alive members
?count units _Group == "!alive _x" count units _Group: goto "Alldead"
;//radio msg for when script starts
_GroupLeader SideChat "Send coordinates, over"
; wait until the player has set a user marker
userMarkerSet = false
@userMarkerSet
;move each of the units in _Group
;"_x DoMove userMarkerPos" ForEach (units _Group)
units _Group Commandmove userMarkerPos
;confirm the move order
_GroupLeader SideChat "Roger, moving out"
exit
#Alldead
Hint "This Group has been elminated"
exit
-----------------------------------------
however, when the group leader dies, the script reports that the entire group is dead.
i used [a1] exec "move.sqs" to call the script. is this incorrect? can you suggest a better script for moving groups?