ACE3/addons/parachute/XEH_preInit.sqf

22 lines
507 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
// Author: Garth 'L-H' de Wet
// Initialises the parachute system.
ADDON = false;
PREP_RECOMPILE_START;
2016-02-22 14:20:36 +00:00
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;
2016-02-22 14:20:36 +00:00
[
QGVAR(hideAltimeter),
"CHECKBOX",
[LSTRING(HideAltimeter), LSTRING(HideAltimeter_tooltip)],
format ["ACE %1", localize ELSTRING(common,DisplayName)],
true,
false,
{[QGVAR(hideAltimeter), _this, false] call EFUNC(common,cbaSettings_settingChanged)}
] call cba_settings_fnc_init;
ADDON = true;