2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
/*
|
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
|
|
|
|
2015-08-07 07:18:42 +00:00
|
|
|
params ["_logic", "_units", "_activated"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
if !(_activated) exitWith {};
|
|
|
|
|
2015-01-12 14:47:22 +00:00
|
|
|
GVAR(Module) = true;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
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);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2017-11-11 19:21:55 +00:00
|
|
|
["CBA_settings_setSettingMission", [QGVAR(EnableSwitchUnits), true, true]] call CBA_fnc_localEvent;
|
2015-02-03 20:47:48 +00:00
|
|
|
|
2016-10-02 10:55:31 +00:00
|
|
|
INFO("SwitchUnits Module Initialized.");
|