mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
cb08a7c172
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
28 lines
915 B
Plaintext
28 lines
915 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP_RECOMPILE_START;
|
|
#include "XEH_PREP.hpp"
|
|
PREP_RECOMPILE_END;
|
|
|
|
#include "initSettings.inc.sqf"
|
|
|
|
// Add vanilla killed EH to unit to set correct killer
|
|
["CAManBase", "init", {
|
|
params ["_unit"];
|
|
|
|
if (unitIsUAV _unit) exitWith {TRACE_1("ignore UAV AI",typeOf _unit);};
|
|
if (getNumber ((configOf _unit) >> "isPlayableLogic") == 1) exitWith {TRACE_1("ignore logic unit",typeOf _unit)};
|
|
|
|
// Hopefully this EH gets added first as it can only effect other EH called after it
|
|
private _ehIndex = _unit addEventHandler ["Killed", {_this call FUNC(handleKilled)}];
|
|
#ifdef DEBUG_MODE_FULL
|
|
if (_ehIndex != 0) then { WARNING_1("killed EH not first [%1]",_ehIndex); };
|
|
#endif
|
|
}, nil, [IGNORE_BASE_UAVPILOTS], true] call CBA_fnc_addClassEventHandler;
|
|
|
|
addMissionEventHandler ["EntityKilled", {_this call FUNC(handleKilledMission)}];
|
|
|
|
ADDON = true;
|