24 lines
509 B
Plaintext
24 lines
509 B
Plaintext
#include "..\script_component.hpp"
|
|
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
call FUNC(addMicroDAGRWaypoints);
|
|
call FUNC(addZenModules);
|
|
call FUNC(bindEmptyGroupGarbageCleanup);
|
|
call FUNC(bindEventHandlers);
|
|
call FUNC(bindVehicleActions);
|
|
|
|
// add listener that tracks when the player goes unconscious and saves a variable with time
|
|
call FUNC(bindUnconsciousListener);
|
|
|
|
[
|
|
LEVEL_DEBUG,
|
|
QUOTE(COMPONENT),
|
|
"initClient complete",
|
|
[]
|
|
] call EFUNC(common,log);
|
|
|
|
localNamespace setVariable [QGVAR(complete), true];
|
|
|
|
nil; |