ACE3/addons/viewdistance/functions/fnc_initModule.sqf

29 lines
735 B
Plaintext

/*
* Author: Winter
* Initialises the view distance limiter module
*
*
* Arguments:
* 0: logic <OBJECT>
* 1: Synchronised Units <ARRAY>
* 2: Module Activated <BOOL>
*
* Return Value:
* None
*
*/
#include "script_component.hpp"
if (!isServer) exitWith {};
PARAMS_3(_logic,_units,_activated);
if (!_activated) exitWith {
diag_log text "[ACE]: View Distance Limit Module is placed but NOT active.";
};
[_logic, QGVAR(enabled),"moduleViewDistanceEnabled"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(limitViewDistance),"moduleViewDistanceLimit"] call EFUNC(common,readSettingFromModule);
diag_log format ["[ACE]: View Distance Limit Module Initialized. Limit set by module: %1",GVAR(limitViewDistance)];