/* * Author: Jonpas * Initializes the Headless module. * * Arguments: * 0: The module logic * 1: Units (Unused) * 2: Activated * * Return Value: * None * * Public: No */ #include "script_component.hpp" if (!isServer) exitWith {}; params ["_logic", "", "_activated"]; if (!_activated) exitWith {}; [_logic, QGVAR(Enabled), "Enabled"] call EFUNC(common,readSettingFromModule); [_logic, QGVAR(Delay), "Delay"] call EFUNC(common,readSettingFromModule); [_logic, QGVAR(Log), "Log"] call EFUNC(common,readSettingFromModule); ACE_LOGINFO("Headless Module Initialized.");