mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
559a498e6d
* Add fast mouse actions to refuel * nobody seen that * Add interaction condition and refuel on ladder * Add car hit, fix change weapon on uncon * Replace objNull with nil in setVar, unify var names * Delete *ConnectNozzle functions * Delete reset* functions * Add public function and eden attributes * Remove static actions from RHS compat * Remove statusEffect_set on respawn * Fix dual menu, add deprecating message * Optimize fnc_takeNozzle * Cleanup
34 lines
698 B
C++
34 lines
698 B
C++
class Extended_PreStart_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_FILE(XEH_preStart));
|
|
};
|
|
};
|
|
|
|
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_Respawn_EventHandlers {
|
|
class CAManBase {
|
|
class ADDON {
|
|
respawn = QUOTE(call DFUNC(handleRespawn));
|
|
};
|
|
};
|
|
};
|
|
|
|
class Extended_InitPost_EventHandlers {
|
|
class Land_CanisterFuel_F {
|
|
class ADDON {
|
|
init = QUOTE(call DFUNC(makeJerryCan));
|
|
};
|
|
};
|
|
};
|