ACE3/addons/atragmx/initKeybinds.sqf

36 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-05-28 19:59:04 +00:00
["ACE3 Equipment", QGVAR(ATragMXDialogKey), localize LSTRING(ATragMXDialogKey),
{
// Conditions: canInteract
if !([ACE_player, objNull, ["notOnMap", "isNotInside", "isNotSitting"]] call EFUNC(common,canInteractWith)) exitWith {false};
if (GVAR(active)) exitWith {
closeDialog 0;
false
};
// Statement
[] call FUNC(create_dialog);
false
},
{false},
[0, [false, false, false]], false, 0] call CBA_fnc_addKeybind; // (empty default key)
2015-05-12 03:22:24 +00:00
//Add deviceKey entry:
private _conditonCode = {
2015-06-06 00:46:19 +00:00
[] call FUNC(can_show);
2015-05-12 03:22:24 +00:00
};
private _toggleCode = {
// Conditions: canInteract
if !([ACE_player, objNull, ["notOnMap", "isNotInside", "isNotSitting"]] call EFUNC(common,canInteractWith)) exitWith {};
if (GVAR(active)) exitWith {
closeDialog 0;
};
// Statement
[] call FUNC(create_dialog);
2015-05-12 03:22:24 +00:00
};
private _closeCode = {
2015-06-06 00:46:19 +00:00
if (GVAR(active)) exitWith {
2015-05-12 03:22:24 +00:00
closeDialog 0;
};
};
2016-04-08 18:34:50 +00:00
[(localize LSTRING(Name)), QPATHTOF(UI\ATRAG_Icon.paa), _conditonCode, _toggleCode, _closeCode] call EFUNC(common,deviceKeyRegisterNew);