spookygnu 563 Posted April 15, 2013 I have four military speedboats placed at the jetty at Camp Tempest, and, I want to place a fireteam in each one. Has anybody tried this yet or something similar. I've had a go at using a "Get in Nearest", "Get in", waypoint. Also tried using the "In Cargo" from the special field, but no joy yet. anybody got any ideas for this?? thanks! Share this post Link to post Share on other sites
Helice 13 Posted April 16, 2013 You need: _unit assignAsCargo _vehicle; [_unit] orderGetIn true; Just place a waypoint close to boat and put the code in "ON ACT" textbox. Thats is for 1 unit. You should use a loop for each member. Share this post Link to post Share on other sites
spookygnu 563 Posted April 16, 2013 Thanks man! I hadn't realised that there was already a speedboat unit in the editor with a crew assign in the positions. I had also asked someone else I know who helped me out. So for anyone else heres some advice: The Ai mounting an empty boat is abit glitchy at best. The best way to get a team to mount we found was doing it on mission start or you could spawn them in like this. Empty speedboat one fireteam units init field: as a driver: this moveInDriver boatName; as a gunner: this moveInGunner boatName; as a commander: this moveInCommander boatName; -- this also controls the front weapon. as a passenger: this moveInCargo boatName; Each unit you need to assign the special to InCargo. cheers. Share this post Link to post Share on other sites