mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
60cab0af6b
* Initial push * disable forgotten define * Improve exitWith check * Requested/suggested changes * Requested changes * Requested changes
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Initialises the parachute system.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
["ACE3 Equipment", QGVAR(showAltimeter), localize LSTRING(showAltimeter), {
|
|
// Conditions: canInteract
|
|
if (
|
|
!([ACE_player, objNull, ["isNotEscorting", "isNotInside"]] call EFUNC(common,canInteractWith)) ||
|
|
{!('ACE_Altimeter' in assignedItems ACE_player)}
|
|
) exitWith { false };
|
|
|
|
if !(GETMVAR(GVAR(AltimeterActive),false)) then {
|
|
[ACE_player] call FUNC(showAltimeter);
|
|
} else {
|
|
call FUNC(hideAltimeter);
|
|
};
|
|
|
|
true
|
|
}, {false}, [24, [false, false, false]], false] call CBA_fnc_addKeybind;
|
|
|
|
// Handle reserve chute based on current backpack (fires when parachute opens too)
|
|
["loadout", FUNC(handleReserve), true] call CBA_fnc_addPlayerEventHandler;
|
|
|
|
// Don't show vanilla speed and height when in expert mode
|
|
["ace_infoDisplayChanged", {_this call FUNC(handleInfoDisplayChanged)}] call CBA_fnc_addEventHandler;
|
|
|
|
["vehicle", {_this call FUNC(handleFailureChance)}] call CBA_fnc_addPlayerEventHandler;
|