mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5fe82662e5
* add RscUnitInfo to DisplayLoad eh * delete all ace_infoDisplayChanged that also have initDisplay with RscUnitInfo
83 lines
2.1 KiB
C++
83 lines
2.1 KiB
C++
|
|
class Extended_PreStart_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_FILE(XEH_preStart));
|
|
};
|
|
};
|
|
|
|
class Extended_PreInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
|
disableModuload = true;
|
|
};
|
|
};
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_FILE(XEH_postInit));
|
|
disableModuload = true;
|
|
};
|
|
};
|
|
|
|
class Extended_DisplayLoad_EventHandlers {
|
|
class RscDisplayMission {
|
|
ADDON = QUOTE(_this call COMPILE_FILE(XEH_missionDisplayLoad));
|
|
};
|
|
class RscUnitInfo {
|
|
ADDON = QUOTE([ARR_2('ace_infoDisplayChanged', [ARR_2(_this select 0, 'Any')])] call CBA_fnc_localEvent;);
|
|
};
|
|
};
|
|
|
|
class Extended_InitPost_EventHandlers {
|
|
class CAManBase {
|
|
class GVAR(setName) {
|
|
init = QUOTE(if (local (_this select 0)) then {[ARR_2(FUNC(setName),_this)] call CBA_fnc_execNextFrame};);
|
|
};
|
|
class GVAR(muteUnit) {
|
|
init = QUOTE(_this call FUNC(muteUnitHandleInitPost));
|
|
};
|
|
};
|
|
};
|
|
|
|
class Extended_Respawn_EventHandlers {
|
|
class All {
|
|
class GVAR(restoreVariablesJIP) {
|
|
respawn = QUOTE(_this call FUNC(restoreVariablesJIP));
|
|
};
|
|
class GVAR(setName) {
|
|
respawn = QUOTE(_this call FUNC(setName));
|
|
};
|
|
class GVAR(RESETDefaults) {
|
|
respawn = QUOTE(_this call FUNC(resetAllDefaults));
|
|
};
|
|
class GVAR(statusEffect) {
|
|
respawn = QUOTE(_this call FUNC(statusEffect_respawnEH));
|
|
};
|
|
};
|
|
class CAManBase {
|
|
class GVAR(muteUnit) {
|
|
respawn = QUOTE(_this call FUNC(muteUnitHandleRespawn));
|
|
};
|
|
};
|
|
};
|
|
|
|
class Extended_Local_EventHandlers {
|
|
class All {
|
|
class GVAR(statusEffect) {
|
|
local = QUOTE(_this call FUNC(statusEffect_localEH));
|
|
};
|
|
};
|
|
};
|
|
|
|
class Extended_FiredBIS_EventHandlers {
|
|
class All {
|
|
ADDON = QUOTE(_this call FUNC(firedEH));
|
|
};
|
|
};
|
|
|
|
class Extended_Engine_EventHandlers {
|
|
class All {
|
|
ADDON = QUOTE(_this call FUNC(handleEngine));
|
|
};
|
|
};
|