Jsempri 12 Posted August 7, 2016 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
davidoss 552 Posted August 7, 2016 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
Jsempri 12 Posted August 7, 2016 I'll try this. Thanks Share this post Link to post Share on other sites
Jsempri 12 Posted August 7, 2016 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
Jsempri 12 Posted August 7, 2016 Never mind. I figured it out. Thanks again for the help!! Share this post Link to post Share on other sites