mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
605 B
Plaintext
28 lines
605 B
Plaintext
|
/*
|
||
|
* Author: Jonpas
|
||
|
* Initializes the Headless module.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: The module logic <LOGIC>
|
||
|
* 1: Units <ARRAY> (Unused)
|
||
|
* 2: Activated <BOOL>
|
||
|
*
|
||
|
* 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.");
|