ACE3/addons/map/functions/fnc_moduleMap.sqf
2015-08-26 15:32:54 +02:00

27 lines
891 B
Plaintext

/*
* Author: esteldunedain
* Initializes the Map module.
*
* Arguments:
* Whatever the module provides. (I dunno.)
*
* Return Value:
* None
*/
#include "script_component.hpp"
if !(isServer) exitWith {};
params ["_logic", "_units", "_activated"];
if !(_activated) exitWith {};
[_logic, QGVAR(mapIllumination), "MapIllumination" ] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(mapGlow), "MapGlow" ] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(mapShake), "MapShake" ] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(mapLimitZoom), "MapLimitZoom" ] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(mapShowCursorCoordinates), "MapShowCursorCoordinates"] call EFUNC(common,readSettingFromModule);
ACE_LOGINFO("Map Module Initialized.");