ACE3/addons/laserpointer/initKeybinds.sqf

14 lines
506 B
Plaintext
Raw Normal View History

2015-04-14 11:24:17 +00:00
// by commy2
2015-05-28 19:59:04 +00:00
["ACE3 Weapons", QGVAR(switchLaserLightMode), localize LSTRING(switchLaserLight),
2015-04-14 11:24:17 +00:00
{
// Conditions: canInteract
if !([ACE_player, objNull, ["isNotInside", "isNotSitting"]] call EFUNC(common,canInteractWith)) exitWith {false};
2015-04-14 11:24:17 +00:00
// Conditions: specific
if !([ACE_player] call EFUNC(common,canUseWeapon)) exitWith {false};
[ACE_player, currentWeapon ACE_player] call FUNC(switchLaserLightMode);
true
},
{false}, [38, [false, true, false]], false] call CBA_fnc_addKeybind;