2018-04-27 14:43:41 +00:00
|
|
|
class Extended_PreStart_EventHandlers {
|
|
|
|
class ADDON {
|
2021-09-04 00:08:34 +00:00
|
|
|
init = QUOTE(call COMPILE_SCRIPT(XEH_preStart));
|
2018-04-27 14:43:41 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_PreInit_EventHandlers {
|
|
|
|
class ADDON {
|
2021-09-04 00:08:34 +00:00
|
|
|
init = QUOTE(call COMPILE_SCRIPT(XEH_preInit));
|
2018-04-27 14:43:41 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-04-07 01:20:51 +00:00
|
|
|
class Extended_PostInit_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_SCRIPT(XEH_postInit));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-08-12 09:14:48 +00:00
|
|
|
class Extended_Respawn_EventHandlers {
|
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
|
|
|
respawn = QUOTE(call FUNC(resetStateDefault));
|
2019-05-12 04:13:59 +00:00
|
|
|
exclude[] = {IGNORE_BASE_UAVPILOTS};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_Local_EventHandlers {
|
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
|
|
|
local = QUOTE(call FUNC(localityChangedEH));
|
|
|
|
exclude[] = {IGNORE_BASE_UAVPILOTS};
|
2018-08-12 09:14:48 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|