mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
504 B
Plaintext
14 lines
504 B
Plaintext
// by commy2
|
|
|
|
["ACE3 Weapons", QGVAR(switchLaserLightMode), localize "STR_ACE_Laserpointer_switchLaserLight",
|
|
{
|
|
// Conditions: canInteract
|
|
if !([ACE_player, objNull, ["isNotInside"]] call EFUNC(common,canInteractWith)) exitWith {false};
|
|
// 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;
|