2016-02-22 14:20:36 +00:00
|
|
|
|
|
|
|
class Extended_PreStart_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_preStart));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-03-29 13:20:39 +00:00
|
|
|
class Extended_PreInit_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
|
|
|
};
|
|
|
|
};
|
2015-08-10 21:07:47 +00:00
|
|
|
|
2015-08-18 16:48:21 +00:00
|
|
|
class Extended_PostInit_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_postInit));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-10 21:07:47 +00:00
|
|
|
class Extended_Killed_EventHandlers {
|
|
|
|
class All {
|
2016-01-19 03:53:48 +00:00
|
|
|
class ADDON {
|
|
|
|
serverKilled = QUOTE(call FUNC(handleDestroyed));
|
|
|
|
};
|
2015-08-10 21:07:47 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-09-20 15:05:34 +00:00
|
|
|
//Need initPost or we have problems with setVariable with 'ACE_Cargo'
|
|
|
|
class Extended_InitPost_EventHandlers {
|
2016-04-03 12:17:16 +00:00
|
|
|
class ThingX {
|
2015-08-14 20:01:14 +00:00
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DFUNC(initObject); _this call DFUNC(initVehicle));
|
|
|
|
};
|
|
|
|
};
|
2015-08-15 08:22:44 +00:00
|
|
|
class Land_PaperBox_closed_F {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DFUNC(initObject); _this call DFUNC(initVehicle));
|
|
|
|
};
|
|
|
|
};
|
2016-03-02 21:17:19 +00:00
|
|
|
class PlasticCase_01_base_F {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DFUNC(initObject); _this call DFUNC(initVehicle));
|
|
|
|
};
|
|
|
|
};
|
2016-04-03 12:17:16 +00:00
|
|
|
class LandVehicle {
|
2015-08-10 21:07:47 +00:00
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DFUNC(initVehicle));
|
|
|
|
};
|
|
|
|
};
|
2016-04-03 12:17:16 +00:00
|
|
|
class Air {
|
2015-08-10 21:07:47 +00:00
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DFUNC(initVehicle));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class Ship_F {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DFUNC(initVehicle));
|
|
|
|
};
|
|
|
|
};
|
2015-08-20 19:41:28 +00:00
|
|
|
class ACE_ConcertinaWireCoil {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DFUNC(initObject));
|
|
|
|
};
|
|
|
|
};
|
2015-08-22 18:00:26 +00:00
|
|
|
class Land_PortableLight_single_F {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DFUNC(initObject));
|
|
|
|
};
|
|
|
|
};
|
2016-08-05 17:03:45 +00:00
|
|
|
class StaticWeapon {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DFUNC(initObject));
|
|
|
|
};
|
|
|
|
};
|
2015-08-10 21:07:47 +00:00
|
|
|
};
|