ACE3/addons/towing/functions/fnc_addRopeToVehicle.sqf
Dystopian 20fb895b31
Towing - Add rope to vehicle inventory (#8963)
* Add rope to vehicle inventory

* Use LINKFUNC

* Make setting not need restart

Co-authored-by: PabstMirror <pabstmirror@gmail.com>

Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2022-08-29 02:24:24 +02:00

28 lines
590 B
Plaintext

#include "script_component.hpp"
/*
* Author: Dystopian
* Adds rope to vehicle inventory.
*
* Arguments:
* 0: Vehicle <OBJECT>
*
* Return Value:
* None
*
* Example:
* cursorObject call ace_towing_fnc_addRopeToVehicle
*
* Public: No
*/
if (!GVAR(addRopeToVehicleInventory)) exitWith {};
params ["_vehicle"];
if (0 == getNumber (configOf _vehicle >> QEGVAR(cargo,hasCargo))) exitWith {};
private _ropeType = if (
-1 < ["Tank", "Wheeled_APC_F", "Truck_F"] findIf {_vehicle isKindOf _x}
) then {"ACE_rope12"} else {"ACE_rope6"};
_vehicle addItemCargoGlobal [_ropeType, 1];