ACE3/addons/fastroping/functions/fnc_deployAIWaypoint.sqf

41 lines
1.2 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
2016-03-05 19:25:35 +00:00
/*
* Author: BaerMitUmlaut
* Waypoint function for the fast rope waypoint.
*
* Arguments:
* 0: Group <GROUP>
* 1: Waypoint position <ARRAY>
*
* Return Value:
* true <BOOL>
2016-03-05 19:25:35 +00:00
*
* Example:
* [_group, [6560, 12390, 0]] call ace_fastroping_fnc_deployAIWaypoint
2016-03-05 19:25:35 +00:00
*
* Public: No
*/
params [["_group", grpNull, [grpNull]], ["_position", [0, 0, 0], [[]], 3]];
private _vehicle = vehicle leader _group;
private _commander = effectiveCommander _vehicle;
private _speedMode = speedMode _group;
2016-03-05 19:25:35 +00:00
// - Approach -----------------------------------------------------------------
if (_vehicle distance2D _position > 50) then {
_group setSpeedMode "LIMITED";
_vehicle flyInHeight 20;
_commander doMove _position;
waitUntil {_vehicle distance2D _position < 50};
waitUntil {vectorMagnitude (velocity _vehicle) < 3};
//doStop _commander;
};
// - Deployment ---------------------------------------------------------------
[_vehicle] call FUNC(deployAI);
waitUntil {(_vehicle getVariable [QGVAR(deployedRopes), []]) isNotEqualTo []};
2016-03-05 19:25:35 +00:00
waitUntil {(_vehicle getVariable [QGVAR(deployedRopes), []]) isEqualTo []};
_group setSpeedMode _speedMode;
true