ACE3/addons/fastroping/functions/fnc_equipFRIES.sqf

30 lines
801 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: BaerMitUmlaut
* Equips the given helicopter with a FRIES.
*
* Arguments:
* 0: The helicopter <OBJECT>
*
* Return Value:
* None
*
* Example:
* [_vehicle] call ace_fastroping_fnc_equipFRIES
*
* Public: Yes
*/
2020-06-14 19:30:28 +00:00
params ["_vehicle"];
private _config = configOf _vehicle;
if !(isNumber (_config >> QGVAR(enabled))) then {
2020-06-14 19:30:28 +00:00
["%1 has not been configured for ACE_Fastroping.", getText (_config >> "displayName")] call BIS_fnc_error;
} else {
if (getNumber (_config >> QGVAR(enabled)) == 2) then {
private _fries = (getText (_config >> QGVAR(friesType))) createVehicle [0, 0, 0];
2020-06-14 19:30:28 +00:00
_fries attachTo [_vehicle, getArray (_config >> QGVAR(friesAttachmentPoint))];
_vehicle setVariable [QGVAR(FRIES), _fries, true];
};
};