mirror of
https://github.com/rambo/arma3_missions.git
synced 2024-08-30 16:52:13 +00:00
15 lines
361 B
Plaintext
15 lines
361 B
Plaintext
if (!ferrying) exitWith {};
|
|
|
|
_group = _this select 0;
|
|
_vehicle = _this select 1;
|
|
|
|
deleteWaypoint [_group,1];
|
|
|
|
{_x action["eject", vehicle _x]} forEach units _group;
|
|
{unAssignVehicle _x} forEach units _group;
|
|
{_x enableAI "TARGET"; _x enableAI "AUTOTARGET";} foreach units _group;
|
|
|
|
wp = _group addwaypoint [lz1,5,1];
|
|
wp setwaypointType "MOVE";
|
|
|
|
ferrying = false; |