ACE3/addons/compat_rhs_gref3/functions/fnc_onCut.sqf

42 lines
1.0 KiB
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
/*
* Author: BaerMitUmlaut
* Function for closing doors and retracting the hooks for RHS USF helos.
*
* Arguments:
* 0: Helicopter <OBJECT>
*
* Return Value:
* Amount of time to wait before cutting ropes <NUMBER>
*
* Example:
* [_vehicle] call ace_compat_rhs_gref3_fnc_onCut
*
* Public: No
*/
params ["_vehicle"];
_vehicle setVariable [QEGVAR(fastroping,doorsLocked), false, true];
private _fries = _vehicle getVariable [QEGVAR(fastroping,FRIES), objNull];
if !(isNull _fries) then {
_fries animate ["extendHookRight", 0];
_fries animate ["extendHookLeft", 0];
[{
_this animateDoor ["doorRB", 0];
_this animateDoor ["doorLB", 0];
_this animate ["doorHandler_R",0];
_this animate ["doorHandler_L",0];
_this animateDoor ["close_cargo_doors", 1];
}, _vehicle, 2] call CBA_fnc_waitAndExecute;
4
} else {
_vehicle animateDoor ["ramp_anim", 0];
_vehicle animate ["ramp_bottom",0];
_vehicle animate ["ramp_top",0];
2
};