2016-02-22 14:20:36 +00:00
|
|
|
class Extended_PreStart_EventHandlers {
|
|
|
|
class ADDON {
|
2021-09-04 00:08:34 +00:00
|
|
|
init = QUOTE(call COMPILE_SCRIPT(XEH_preStart));
|
2016-02-22 14:20:36 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-03-14 11:05:43 +00:00
|
|
|
class Extended_PreInit_EventHandlers {
|
|
|
|
class ADDON {
|
2021-09-04 00:08:34 +00:00
|
|
|
init = QUOTE(call COMPILE_SCRIPT(XEH_preInit));
|
2015-03-14 11:05:43 +00:00
|
|
|
};
|
|
|
|
};
|
2015-03-14 12:51:23 +00:00
|
|
|
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
|
|
class ADDON {
|
2021-09-04 00:08:34 +00:00
|
|
|
init = QUOTE(call COMPILE_SCRIPT(XEH_postInit));
|
2015-03-14 12:51:23 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_Init_EventHandlers {
|
2015-03-24 15:12:46 +00:00
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
2023-07-23 23:07:37 +00:00
|
|
|
init = QUOTE(_this call FUNC(initPerson));
|
2019-12-07 20:58:44 +00:00
|
|
|
exclude[] = {"VirtualMan_F"};
|
2015-03-24 15:12:46 +00:00
|
|
|
};
|
|
|
|
};
|
2015-03-18 12:36:22 +00:00
|
|
|
class StaticWeapon {
|
|
|
|
class ADDON {
|
2023-07-23 23:07:37 +00:00
|
|
|
init = QUOTE(_this call FUNC(initObject));
|
2015-03-18 12:36:22 +00:00
|
|
|
};
|
|
|
|
};
|
2021-07-23 14:11:57 +00:00
|
|
|
class Thing {
|
2015-03-29 01:35:55 +00:00
|
|
|
class ADDON {
|
2023-07-23 23:07:37 +00:00
|
|
|
init = QUOTE(_this call FUNC(initObject));
|
2021-07-23 14:11:57 +00:00
|
|
|
exclude[] = {"ModuleEmpty_F", "ThingEffect", "Wreck"};
|
2015-03-29 01:35:55 +00:00
|
|
|
};
|
|
|
|
};
|
2021-07-23 14:11:57 +00:00
|
|
|
class NonStrategic {
|
2015-08-22 18:00:26 +00:00
|
|
|
class ADDON {
|
2023-07-23 23:07:37 +00:00
|
|
|
init = QUOTE(_this call FUNC(initObject));
|
2015-08-22 18:00:26 +00:00
|
|
|
};
|
|
|
|
};
|
2023-07-10 02:49:37 +00:00
|
|
|
class WeaponHolder {
|
|
|
|
class ADDON {
|
2023-07-23 23:07:37 +00:00
|
|
|
init = QUOTE(_this call FUNC(initObject));
|
2023-10-20 00:24:38 +00:00
|
|
|
exclude[] = {"GroundWeaponHolder_Scripted"};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class WeaponHolderSimulated {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call FUNC(initObject));
|
|
|
|
exclude[] = {"WeaponHolderSimulated_Scripted"};
|
2023-07-10 02:49:37 +00:00
|
|
|
};
|
|
|
|
};
|
2018-02-26 18:12:21 +00:00
|
|
|
class Land_Camping_Light_F {
|
|
|
|
class ADDON {
|
2023-07-23 23:07:37 +00:00
|
|
|
init = QUOTE(_this call FUNC(initObject));
|
2018-02-26 18:12:21 +00:00
|
|
|
};
|
|
|
|
};
|
2015-03-14 12:51:23 +00:00
|
|
|
};
|
2015-03-18 14:42:33 +00:00
|
|
|
|
|
|
|
class Extended_Killed_EventHandlers {
|
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
2023-07-23 23:07:37 +00:00
|
|
|
killed = QUOTE(_this call FUNC(handleKilled));
|
2015-03-18 14:42:33 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|