ACE3/addons/map/functions/fnc_blueForceTrackingModule.sqf

27 lines
779 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.) <UNKNOWN>
*
* Return Value:
* None
*
* Example:
* call ACE_map_fnc_blueForceTrackingModule
*
* Public: No
*/
2015-01-16 08:13:29 +00:00
#include "script_component.hpp"
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
INFO_3("Blue Force Tracking Module Initialized:", GVAR(BFT_Enabled), GVAR(BFT_Interval), GVAR(BFT_HideAiGroups));