mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
c31ef9e16b
* Add AI command menu for healing * Moved actions to separate function * Minor cleanup
39 lines
1.5 KiB
Plaintext
39 lines
1.5 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;
|
|
|
|
// Add command actions to command AI medics to treat other units
|
|
call FUNC(addHealingCommandActions);
|
|
|
|
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;
|