2015-01-12 21:34:01 +00:00
|
|
|
|
2016-02-22 14:20:36 +00:00
|
|
|
class Extended_PreStart_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_preStart));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-01-11 18:06:21 +00:00
|
|
|
class Extended_PreInit_EventHandlers {
|
2015-01-12 21:34:01 +00:00
|
|
|
class ADDON {
|
2015-01-14 03:02:48 +00:00
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
2015-01-12 21:34:01 +00:00
|
|
|
disableModuload = true;
|
|
|
|
};
|
2015-01-11 18:06:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_PostInit_EventHandlers {
|
2015-01-12 21:34:01 +00:00
|
|
|
class ADDON {
|
2015-01-14 03:02:48 +00:00
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_postInit));
|
2015-01-12 21:34:01 +00:00
|
|
|
disableModuload = true;
|
|
|
|
};
|
2015-01-11 18:06:21 +00:00
|
|
|
};
|
|
|
|
|
2016-02-21 19:26:30 +00:00
|
|
|
class Extended_DisplayLoad_EventHandlers {
|
|
|
|
class RscDisplayMission {
|
2016-02-28 06:25:11 +00:00
|
|
|
ADDON = QUOTE(_this call COMPILE_FILE(XEH_missionDisplayLoad));
|
2016-02-21 19:26:30 +00:00
|
|
|
};
|
2018-07-13 17:19:58 +00:00
|
|
|
class RscUnitInfo {
|
|
|
|
ADDON = QUOTE([ARR_2('ace_infoDisplayChanged', [ARR_2(_this select 0, 'Any')])] call CBA_fnc_localEvent;);
|
|
|
|
};
|
2016-02-21 19:26:30 +00:00
|
|
|
};
|
|
|
|
|
2015-01-11 18:06:21 +00:00
|
|
|
class Extended_InitPost_EventHandlers {
|
2015-01-12 21:34:01 +00:00
|
|
|
class CAManBase {
|
|
|
|
class GVAR(setName) {
|
2016-05-22 13:27:24 +00:00
|
|
|
init = QUOTE(if (local (_this select 0)) then {[ARR_2(FUNC(setName),_this)] call CBA_fnc_execNextFrame};);
|
2015-01-12 21:34:01 +00:00
|
|
|
};
|
2015-04-12 09:17:58 +00:00
|
|
|
class GVAR(muteUnit) {
|
|
|
|
init = QUOTE(_this call FUNC(muteUnitHandleInitPost));
|
|
|
|
};
|
2015-01-11 18:06:21 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_Respawn_EventHandlers {
|
2015-01-12 21:34:01 +00:00
|
|
|
class All {
|
|
|
|
class GVAR(restoreVariablesJIP) {
|
2015-01-14 03:02:48 +00:00
|
|
|
respawn = QUOTE(_this call FUNC(restoreVariablesJIP));
|
2015-01-12 21:34:01 +00:00
|
|
|
};
|
|
|
|
class GVAR(setName) {
|
2015-01-14 03:02:48 +00:00
|
|
|
respawn = QUOTE(_this call FUNC(setName));
|
2015-01-12 21:34:01 +00:00
|
|
|
};
|
2015-01-16 23:21:47 +00:00
|
|
|
class GVAR(RESETDefaults) {
|
2015-02-14 19:29:07 +00:00
|
|
|
respawn = QUOTE(_this call FUNC(resetAllDefaults));
|
2015-01-16 23:21:47 +00:00
|
|
|
};
|
2016-01-13 00:18:12 +00:00
|
|
|
class GVAR(statusEffect) {
|
|
|
|
respawn = QUOTE(_this call FUNC(statusEffect_respawnEH));
|
|
|
|
};
|
2015-01-11 18:06:21 +00:00
|
|
|
};
|
2015-04-12 08:05:49 +00:00
|
|
|
class CAManBase {
|
|
|
|
class GVAR(muteUnit) {
|
|
|
|
respawn = QUOTE(_this call FUNC(muteUnitHandleRespawn));
|
|
|
|
};
|
|
|
|
};
|
2015-01-12 21:34:01 +00:00
|
|
|
};
|
2016-01-13 00:18:12 +00:00
|
|
|
|
|
|
|
class Extended_Local_EventHandlers {
|
|
|
|
class All {
|
|
|
|
class GVAR(statusEffect) {
|
|
|
|
local = QUOTE(_this call FUNC(statusEffect_localEH));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-02-06 19:09:48 +00:00
|
|
|
class Extended_FiredBIS_EventHandlers {
|
|
|
|
class All {
|
|
|
|
ADDON = QUOTE(_this call FUNC(firedEH));
|
|
|
|
};
|
|
|
|
};
|
2016-05-03 18:52:43 +00:00
|
|
|
|
|
|
|
class Extended_Engine_EventHandlers {
|
|
|
|
class All {
|
|
|
|
ADDON = QUOTE(_this call FUNC(handleEngine));
|
|
|
|
};
|
|
|
|
};
|