jordyboi01 10 Posted May 2, 2013 Hi all I am new to the arma games and the editor.I am trying to make a mission were at the beginning my squad (fire team) is taken to shore by boat is there a way to do this.At the moment the only way I can do it is to place a empty boat in the sea and place my fire team close to it then swim and get in but it looks weird and not very realistic.Any info would be great Thanks. Share this post Link to post Share on other sites
wensquared 1 Posted May 2, 2013 place instead of an empty boat a boat from your side (BLUE or RED) name it for example: boat . to place the units in a boat put for each unit in its init: this moveInCargo boat; to get the boat moving to land, create a waypoint for the boat and instead of MOVE set it to UNLOAD TRANSPORT. also new to arma and the editor. thats the way I did for the helicopter, so I think for the boat its the same. Share this post Link to post Share on other sites
jordyboi01 10 Posted May 2, 2013 place instead of an empty boat a boat from your side (BLUE or RED) name it for example: boat . to place the units in a boat put for each unit in its init: this moveInCargo boat; to get the boat moving to land, create a waypoint for the boat and instead of MOVE set it to UNLOAD TRANSPORT. also new to arma and the editor. thats the way I did for the helicopter, so I think for the boat its the same. Thank you so much i will give it a go Share this post Link to post Share on other sites
super-truite 54 Posted May 3, 2013 To put the whole group in the boat, put this in the initialization field of the group leader: {_x moveInCargo boat} foreach units group this (it can save a lot of time if you want to do it with a lot of boats/groups in the future). Share this post Link to post Share on other sites
mikerally 12 Posted May 3, 2013 To put the whole group in the boat, put this in the initialization field of the group leader: {_x moveInCargo boat} foreach units group this (it can save a lot of time if you want to do it with a lot of boats/groups in the future). dont forget to give the boat also the name boat or this wont work ! :) Share this post Link to post Share on other sites