ACE3/addons/parachute/XEH_postInit.sqf

45 lines
1.2 KiB
Plaintext
Raw Normal View History

/*
* Author: Garth 'L-H' de Wet
* Initialises the parachute system.
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* None
*
* Public: No
*/
#include "script_component.hpp"
if (!hasInterface) exitWith {};
2015-05-28 19:59:04 +00:00
["ACE3 Equipment", QGVAR(showAltimeter), localize LSTRING(showAltimeter),
{
2015-03-05 07:32:26 +00:00
// Conditions: canInteract
if !([ACE_player, objNull, ["isNotEscorting", "isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 07:32:26 +00:00
if (!('ACE_Altimeter' in assignedItems ace_player)) exitWith {false};
if (!(missionNamespace getVariable [QGVAR(AltimeterActive), false])) then {
[ace_player] call FUNC(showAltimeter);
} else {
call FUNC(hideAltimeter);
};
true
},
2015-03-05 08:51:24 +00:00
{false},
2015-03-10 17:45:08 +00:00
[24, [false, false, false]], false] call cba_fnc_addKeybind;
2015-02-02 21:58:24 +00:00
GVAR(PFH) = false;
["playerVehicleChanged",{
2015-03-05 07:32:26 +00:00
if (!GVAR(PFH) && {(vehicle ACE_player) isKindOf "ParachuteBase"}) then {
GVAR(PFH) = true;
[FUNC(onEachFrame), 0.1, []] call CALLSTACK(cba_fnc_addPerFrameHandler);
};
}] call EFUNC(common,addEventHandler);
// don't show speed and height when in expert mode
["infoDisplayChanged", {_this call FUNC(handleInfoDisplayChanged)}] call EFUNC(common,addEventHandler);