Oh great scripting wizards. I seek your wisdom.
I am creating a intro scene, where I want some Mi-17s and Mi-24s fly in from the ocean, come in and land. I want troops to disembark and move to and board trucks.
I have set is up by naming the squads and moving them into the helos
In the squad leaders init field:
Sqd = group this; "_x moveinAsCargo helo" forEach units Sqd.
This works fine.
I have the helos land and transport unload synchronized with it the squads getout waypoints.
They then moved via waypoints to the back of the trucks and I place the following in the previous waypoint's activation field:
"UnassignVehicle _x" forEach units Sqd
Then at the next and final waypoint I have in the activation field:
"_x assignAsCargo truck" forEach units Sqd; [a,b,c,d,e,f,g,h,I] orderGetIn true
However once they reach the back of the trucks they just stand there and do nothing. I can't get them to do anything.
I do not want to use the Load and GetIn synchronized waypoints because the trucks are part of a convoy and I want the troops to board a particular truck.
I am stuck and not sure how to proceed. If anyone has any suggestions or ideas it would be much appreciated