ACE3/addons/map/functions/fnc_blueForceTrackingModule.sqf

24 lines
720 B
Plaintext
Raw Normal View History

2015-01-16 08:13:29 +00:00
/*
* Author: KoffeinFlummi
* Initializes the blue force tracking module.
*
* Arguments:
* Whatever the module provides. (I dunno.)
*
* Return Value:
* None
*/
#include "script_component.hpp"
2015-09-18 17:18:43 +00:00
if (!isServer) exitWith {};
2015-08-11 17:49:39 +00:00
2015-09-18 17:18:43 +00:00
params ["_logic"];
2015-01-16 08:13:29 +00:00
[_logic, QGVAR(BFT_Enabled), "Enabled"] call EFUNC(common,readSettingFromModule);
2015-02-03 05:53:02 +00:00
[_logic, QGVAR(BFT_Interval), "Interval"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(BFT_HideAiGroups), "HideAiGroups"] call EFUNC(common,readSettingFromModule);
[_logic, QGVAR(BFT_ShowPlayerNames), "ShowPlayerNames"] call EFUNC(common,readSettingFromModule);
2015-01-16 08:13:29 +00:00
2015-09-18 17:18:43 +00:00
ACE_LOGINFO_3("Blue Force Tracking Module Initialized:", GVAR(BFT_Enabled), GVAR(BFT_Interval), GVAR(BFT_HideAiGroups));