2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: KoffeinFlummi
|
|
|
|
* Initializes the check-PBOs module.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-06-23 13:27:49 +00:00
|
|
|
* 0: The module logic <LOGIC>
|
|
|
|
* 1: units <ARRAY>
|
|
|
|
* 2: activated <BOOL>
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
2015-09-18 19:46:21 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-05-28 18:49:30 +00:00
|
|
|
if !(isServer) exitWith {};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-18 19:46:21 +00:00
|
|
|
params ["_logic", "_units", "_activated"];
|
2015-05-14 22:12:40 +00:00
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
if !(_activated) exitWith {};
|
|
|
|
|
2015-05-15 22:54:01 +00:00
|
|
|
[_logic, QGVAR(checkPBOsAction), "Action" ] call EFUNC(common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(checkPBOsCheckAll), "CheckAll" ] call EFUNC(common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(checkPBOsWhitelist), "Whitelist" ] call EFUNC(common,readSettingFromModule);
|
|
|
|
|
2015-08-26 15:39:44 +00:00
|
|
|
ACE_LOGINFO_1("Check-PBOs Module Initialized. Mode: %1.",GVAR(checkPBOsAction));
|