mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
74de646a02
Several medical AI fixes - Not applying splints if too many medications were taken - Potential nil for _target - Setting could add multiple EH, require mission restart
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
#include "script_component.hpp"
|
|
|
|
["CBA_settingsInitialized", {
|
|
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
|
|
|
|
["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;
|
|
|
|
["CAManBase", "Suppressed", {
|
|
params ["_unit"];
|
|
_unit setVariable [QGVAR(lastSuppressed), CBA_missionTime];
|
|
}] call CBA_fnc_addClassEventHandler;
|
|
|
|
if (GVAR(requireItems) == 2) then {
|
|
["CAManBase", "InitPost", {
|
|
[{
|
|
params ["_unit"];
|
|
if ((!local _unit) || {!alive _unit} || {isPlayer _unit}) exitWith {};
|
|
TRACE_2("replacing medical items on AI",_unit,typeOf _unit);
|
|
[_unit] call EFUNC(common,replaceRegisteredItems);
|
|
}, _this] call CBA_fnc_execNextFrame; // need to delay a frame before modifying items in a backpack
|
|
}, nil, [IGNORE_BASE_UAVPILOTS], true] call CBA_fnc_addClassEventHandler;
|
|
};
|
|
|
|
#include "stateMachine.inc.sqf"
|
|
}] call CBA_fnc_addEventHandler;
|