ACE3/addons/vector/initKeybinds.sqf

59 lines
1.7 KiB
Plaintext
Raw Normal View History

2015-02-11 13:51:21 +00:00
// by commy2
["ACE3 Equipment", QGVAR(AzimuthKey), localize STRING(AzimuthKey),
2015-03-05 08:00:56 +00:00
{
// Conditions: canInteract
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 08:00:56 +00:00
// Conditions: specific
if !(currentWeapon ACE_player == "ACE_Vector" && {cameraView == "GUNNER"}) exitWith {false};
2015-03-05 08:00:56 +00:00
2015-03-05 08:46:24 +00:00
// prevent holding down
if (GETGVAR(isDownStateKey1,false)) exitWith {false};
GVAR(isDownStateKey1) = true;
2015-03-05 08:00:56 +00:00
// Statement
["azimuth"] call FUNC(onKeyDown);
2015-03-18 16:53:26 +00:00
false
2015-03-05 08:00:56 +00:00
},
{
2015-03-05 08:46:24 +00:00
// prevent holding down
GVAR(isDownStateKey1) = false;
2015-03-05 08:00:56 +00:00
// Conditions: canInteract
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 08:00:56 +00:00
// Statement
["azimuth"] call FUNC(onKeyUp);
2015-03-18 16:53:26 +00:00
false
2015-03-05 08:00:56 +00:00
},
[15, [false, false, false]], false, 0] call CBA_fnc_addKeybind; //Tab Key
["ACE3 Equipment", QGVAR(DistanceKey), localize STRING(DistanceKey),
2015-03-05 08:00:56 +00:00
{
// Conditions: canInteract
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 08:00:56 +00:00
// Conditions: specific
if !(currentWeapon ACE_player == "ACE_Vector" && {cameraView == "GUNNER"}) exitWith {false};
2015-03-05 08:00:56 +00:00
2015-03-05 08:46:24 +00:00
// prevent holding down
if (GETGVAR(isDownStateKey2,false)) exitWith {false};
GVAR(isDownStateKey2) = true;
2015-03-05 08:00:56 +00:00
// Statement
["distance"] call FUNC(onKeyDown);
2015-03-18 16:53:26 +00:00
false
2015-03-05 08:00:56 +00:00
},
{
2015-03-05 08:46:24 +00:00
// prevent holding down
GVAR(isDownStateKey2) = false;
2015-03-05 08:00:56 +00:00
// Conditions: canInteract
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-03-05 08:00:56 +00:00
// Statement
["distance"] call FUNC(onKeyUp);
2015-03-18 16:53:26 +00:00
false
2015-03-05 08:00:56 +00:00
},
2015-03-05 08:46:24 +00:00
[19, [false, false, false]], false] call CBA_fnc_addKeybind; //R Key