ACE3/addons/interaction/functions/fnc_moduleInteraction.sqf

22 lines
445 B
Plaintext
Raw Normal View History

2015-01-11 19:32:51 +00:00
/*
* Author: bux578
*
* Initializes the Interaction module.
*
* Arguments:
* Whatever the module provides. (I dunno.)
*
* Return Value:
* None
*/
2015-01-11 23:13:47 +00:00
#include "script_component.hpp"
2015-01-11 19:32:51 +00:00
_logic = _this select 0;
_activated = _this select 2;
if !(_activated) exitWith {};
2015-01-13 05:14:27 +00:00
[_logic, QGVAR(EnableTeamManagement), "EnableTeamManagement"] call EFUNC(common,readBooleanParameterFromModule);
2015-01-11 19:32:51 +00:00
diag_log text "[ACE]: Interaction Module Initialized.";