ACE3/addons/fastroping/functions/fnc_canStowFRIES.sqf
jonpas 40e4ad3f5a Add Stow FRIES interaction (#5533)
* Add stow FRIES interaction
Allows stowing FRIES (retracting the hooks, closing doors) without the need to deploy and cut ropes

* Do not automatically stow FRIES anymore

* Cleanup more privates
2017-09-21 16:16:04 +02:00

24 lines
495 B
Plaintext

/*
* Author: BaerMitUmlaut
* Checks if the unit can stow the helicopters FRIES.
*
* Arguments:
* 0: The helicopter itself <OBJECT>
*
* Return Value:
* Able to stow FRIES <BOOL>
*
* Example:
* [_vehicle] call ace_fastroping_fnc_canStowFRIES
*
* Public: No
*/
#include "script_component.hpp"
params ["_vehicle"];
private _config = configFile >> "CfgVehicles" >> typeOf _vehicle;
(_vehicle getVariable [QGVAR(deploymentStage), 0]) == 2 &&
{getText (_config >> QGVAR(onCut)) != ""}