ACE3/addons/interaction/functions/fnc_menuKeyInput.sqf

18 lines
337 B
Plaintext
Raw Normal View History

2015-01-11 19:32:51 +00:00
// by commy2
2015-01-11 23:13:47 +00:00
#include "script_component.hpp"
2015-01-11 19:32:51 +00:00
private "_key";
_key = _this select 1;
if (_key in [28, 57, 156, 200, 208, 203, 205, 201, 209]) exitWith {true};
2015-01-11 23:13:47 +00:00
_index = GVAR(Shortcuts) find _key;
2015-01-11 19:32:51 +00:00
if (_index != -1 && {ctrlEnabled (findDisplay 1713999 displayCtrl (_index + 10))}) exitWith {
2015-01-11 23:13:47 +00:00
_index call FUNC(onClick);
2015-01-11 19:32:51 +00:00
true
};
false