mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
13c2127574
Removed all _F suffixes Reorganized the RPEP list. Removed unnecessary functions.
61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
|
|
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_InitPost_EventHandlers {
|
|
class All {
|
|
class GVAR(executePersistent) {
|
|
init = QUOTE([_this select 0] call FUNC(executePersistent));
|
|
};
|
|
};
|
|
class CAManBase {
|
|
class GVAR(setName) {
|
|
init = QUOTE(if (local (_this select 0)) then {_this call FUNC(setName)};);
|
|
};
|
|
class GVAR(forceWalk) {
|
|
init = QUOTE(if (local (_this select 0)) then {_this call FUNC(applyForceWalkStatus);};);
|
|
};
|
|
};
|
|
};
|
|
|
|
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 Extended_Killed_EventHandlers {
|
|
class CAManBase {
|
|
class GVAR(dropObject) {
|
|
Killed = QUOTE(if (local (_this select 0)) then {[ARR_2(_this select 0, ObjNull)] call FUNC(carryObj)};);
|
|
};
|
|
};
|
|
};
|
|
|
|
class Extended_GetIn_EventHandlers {
|
|
class CAManBase {
|
|
class GVAR(dropObject) {
|
|
GetIn = QUOTE(if (local (_this select 0)) then {[ARR_2(_this select 0, ObjNull)] call FUNC(carryObj)};);
|
|
};
|
|
};
|
|
};
|