ACE3/addons/switchunits/functions/fnc_module.sqf

41 lines
1.1 KiB
Plaintext
Raw Normal View History

/*
2015-02-02 22:28:27 +00:00
* Author: bux578
* Initializes the SwitchUnits module
*
* Arguments:
* 0: module logic <OBJECT>
* 1: list of affected units <ARRAY<OBJECT>>
* 2: isActivated <BOOLEAN>
*
* Return Value:
* None
*
* Example:
* None
*
* Public: No
*/
2015-01-12 14:47:22 +00:00
#include "script_component.hpp"
if !(isServer) exitWith {};
_logic = _this select 0;
_activated = _this select 2;
if !(_activated) exitWith {};
2015-01-12 14:47:22 +00:00
GVAR(Module) = true;
2015-02-03 05:53:02 +00:00
[_logic, QGVAR(SwitchToWest), "SwitchToWest"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(SwitchToEast), "SwitchToEast"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(SwitchToIndependent), "SwitchToIndependent"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(SwitchToCivilian), "SwitchToCivilian"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(EnableSafeZone), "EnableSafeZone"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(SafeZoneRadius), "SafeZoneRadius"] call EFUNC(common,readSettingFromModule);
[QGVAR(EnableSwitchUnits), true, false, true] call EFUNC(common,setSetting);
2015-01-12 14:47:22 +00:00
diag_log text "[ACE]: SwitchUnits Module Initialized.";