ACE3/addons/viewdistance/functions/fnc_initModule.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

33 lines
809 B
Plaintext

/*
* Author: Winter
* Initializes the view distance limiter module.
*
* Arguments:
* 0: logic <OBJECT>
* 1: Synchronised Units <ARRAY>
* 2: Module Activated <BOOL>
*
* Return Value:
* None
*
* Example:
* [LOGIC; [bob, kevin], true] call ace_viewdistance_fnc_initModule
*
* Public: No
*/
#include "script_component.hpp"
if (!isServer) exitWith {};
params ["_logic", "_units", "_activated"];
if (!_activated) exitWith {
WARNING("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);
INFO_1("View Distance Limit Module Initialized. Limit set by module: %1",GVAR(limitViewDistance));