2015-01-16 12:15:14 +00:00
|
|
|
class Extended_PreInit_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_postInit));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_Fired_EventHandlers {
|
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
2015-02-10 02:00:40 +00:00
|
|
|
fired = QUOTE(_this call FUNC(firedEH););
|
2015-01-16 12:15:14 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_Take_EventHandlers {
|
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
2015-01-18 07:13:37 +00:00
|
|
|
clientTake = QUOTE(if (_this select 0 == ACE_player) then{ _this call FUNC(inventoryCheck);};);
|
2015-01-16 12:15:14 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_Put_EventHandlers {
|
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
2015-01-18 07:13:37 +00:00
|
|
|
clientPut = QUOTE(if (_this select 0 == ACE_player) then {_this call FUNC(inventoryCheck);};);
|
2015-01-16 12:15:14 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_InitPost_EventHandlers {
|
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
2015-01-18 07:13:37 +00:00
|
|
|
init = QUOTE(if (_this select 0 == call EFUNC(common,player)) then{ _this call FUNC(inventoryCheck);};);
|
2015-01-16 12:15:14 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_Respawn_EventHandlers {
|
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
2015-01-18 07:13:37 +00:00
|
|
|
respawn = QUOTE(if (_this select 0 == call EFUNC(common,player)) then{ _this call FUNC(inventoryCheck);};);
|
2015-01-16 12:15:14 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|