I'm making a mission, where a squad of six Deltas (a,b,c,d,e,f) gets out of a chopper (landing on a street in a town), and they have to secure the landing zone before the main assault force is choppered in.
Basically I need each of the six soldiers to move to his predetermined position. So for example 'a' moves to position 'aPos', 'b' to 'bPos', etc.
I've placed barrels named (aPos,bPos,cPos) at the desired locations.
And in the On Activation field in the group's last waypoint I typed:
a DoMove GetPos(aPos); b CommandMove GetPos(bPos); c CommandMove GetPos(cPos); . . .
and so on.
Also I need them to face specific directions, once they get into position.
So in the On Activation field of a 'later' waypoint
('later' as in the waypoint belongs to a different group, and get's activated after a,b,c,d,e,f have moved to their preassigned positions),
I typed in:
a SetDir 0; b SetDir 45; c SetDir 90; d SetDir 135; . . .
and so on.
Now the problem is that not all of the men move to their CommandMove positions.
I know the order is given by 'a' (the leader), because I've made myself one of the group, and I've heard the orders given.
Also, those that do move to their CommandMove positions don't face the proper direction indicated by their respective SetDir command.
Help :-\