/* * Author: Glowbal * Module for adjusting the cargo settings * * Arguments: * 0: The module logic * 1: Synchronized units * 2: Activated * * Return Value: * None * * Example: * function = "ace_cargo_fnc_loadItem" * * Public: No */ #include "script_component.hpp" if (!isServer) exitWith {}; params ["_logic", "", "_activated"]; if (!_activated) exitWith {}; [_logic, QGVAR(enable), "enable"] call EFUNC(common,readSettingFromModule); INFO("Cargo Module Initialized.");