Hi,
I was wondering is it possible to have members of a group move to a 2nd location once they get close enough to the target. I dont want to have to name all group members in case they die and are replaced by reinforcements. I am using this and it does not work
======
#move1
grp1 move getpos point1
? (_grp1 distance point1) < 7 : goto "move2"
~4
goto "move1"
#move2
grp1 move getpos point2
?(_grp1 distance point2) < 10 : goto "move3"
~4
goto "move2"
#move3
grp1 move getpos point3
?(_grp1 distance point3) < 8 : goto "move1"
~4
goto "move3"
=======
They move to point 1 using: grp1 move getpos point1
but they wont move on after that no matter what I set the distance at.
Thanks in advance for the help