ACE3/addons/tripod/XEH_postInit.sqf

22 lines
752 B
Plaintext
Raw Normal View History

2015-06-04 19:13:44 +00:00
#include "script_component.hpp"
if (!hasInterface) exitWith {};
2015-06-04 19:13:44 +00:00
GVAR(adjustPFH) = -1;
GVAR(height) = 0;
// Cancel adjustment if interact menu opens
["interactMenuOpened", {[ACE_player] call FUNC(handleInteractMenuOpened)}] call EFUNC(common,addEventHandler);
[{_this call FUNC(handleScrollWheel)}] call EFUNC(common,addScrollWheelEventHandler);
// Cancel adjusting on player change.
["playerChanged", {_this call FUNC(handlePlayerChanged)}] call EFUNC(common,addEventhandler);
["playerVehicleChanged", {[ACE_player, objNull] call FUNC(handlePlayerChanged)}] call EFUNC(common,addEventhandler);
// handle falling unconscious
["medical_onUnconscious", {_this call FUNC(handleUnconscious)}] call EFUNC(common,addEventhandler);
2015-06-04 19:13:44 +00:00
// @todo captivity?