ACE3/addons/medical_ai/XEH_postInit.sqf

20 lines
643 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
["CBA_settingsInitialized", {
2016-09-06 03:35:01 +00:00
TRACE_1("settingsInitialized", GVAR(enabledFor));
if (GVAR(enabledFor) == 0) exitWith {}; // 0: disabled
if ((GVAR(enabledFor) == 1) && {!isServer} && {hasInterface}) exitWith {}; // 1: Don't Run on non-hc Clients
2018-05-08 09:16:12 +00:00
["ace_firedNonPlayer", {
_unit setVariable [QGVAR(lastFired), CBA_missionTime];
}] call CBA_fnc_addEventHandler;
["CAManBase", "Hit", {
params ["_unit"];
_unit setVariable [QGVAR(lastHit), CBA_missionTime];
}] call CBA_fnc_addClassEventHandler;
#include "stateMachine.sqf"
}] call CBA_fnc_addEventHandler;