mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
40e4ad3f5a
* 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
24 lines
495 B
Plaintext
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)) != ""}
|