mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d1f0dc5e83
* Update CfgVehicles.hpp * Cargo cleanup * Update menu.hpp * Updated status effect key * Update fnc_onMenuOpen.sqf * Update fnc_onMenuOpen.sqf * fix comment from merge * nil interaction GVARs on menu close * fix carry bug * Fix floating objects in MP * Updated ace_cargoAdded doc * Fix progress bar prematurely stopping * Finer cursor object selection --------- Co-authored-by: LinkIsGrim <salluci.lovi@gmail.com>
14 lines
594 B
Plaintext
14 lines
594 B
Plaintext
[
|
|
QGVAR(addRopeToVehicleInventory), "CHECKBOX",
|
|
LSTRING(Setting_addRopeToVehicleInventory_DisplayName),
|
|
ELSTRING(OptionsMenu,CategoryLogistics),
|
|
true,
|
|
true,
|
|
{
|
|
if !(_this && {isServer} && {isNil QGVAR(addRopeToVehicleInventory_initialized)}) exitWith {};
|
|
GVAR(addRopeToVehicleInventory_initialized) = true;
|
|
["Tank", "initPost", LINKFUNC(addRopeToVehicle), true, [], true] call CBA_fnc_addClassEventHandler;
|
|
["Car", "initPost", LINKFUNC(addRopeToVehicle), true, [], true] call CBA_fnc_addClassEventHandler;
|
|
}
|
|
] call CBA_fnc_addSetting;
|