Jump to content
Sign in to follow this  
Jsempri

Trying to send a squad to a maker position

Recommended Posts

Having trouble figuring this out and appreciate any help.

 

I want to send a squad to a maker position and I cant figure out how to do it.

I put in the trigger: Bandit_1 doMove (getMarkerPos "Marker1"); Bandit= team leader of that particular squade.but the problem with this script

is that only the team leader get to the marker while the rest stay in their original spot.I believe I should script it so that the group

moves but i cant figure out how to do that.

 

Hope this make sense and i appreciate the help!

 

Share this post


Link to post
Share on other sites

Use waypoints or move command

[] spawn {
private "_wp";
_wp = (group bandit_1) addWaypoint [getMarkerPos "Marker1", 0];
_wp setWaypointType "MOVE";
};

or

(group bandit_1) move getMarkerPos "Marker1";

Share this post


Link to post
Share on other sites

So how would I script this? Would I name the fire team group bandit_1?

Share this post


Link to post
Share on other sites

Never mind. I figured it out. Thanks again for the help!!

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×