2015-01-18 20:05:17 +00:00
|
|
|
// by CAA-Picard
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
if !(hasInterface) exitWith {};
|
|
|
|
|
|
|
|
// Add keybinds
|
2015-03-05 07:32:26 +00:00
|
|
|
["ACE3", QGVAR(RestWeapon), localize "STR_ACE_Resting_RestWeapon",
|
|
|
|
{
|
|
|
|
// Conditions: canInteract
|
2015-03-20 22:55:39 +00:00
|
|
|
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
|
2015-03-05 07:32:26 +00:00
|
|
|
// Conditions: specific
|
|
|
|
if !([ACE_player] call EFUNC(common,canUseWeapon) &&
|
|
|
|
{inputAction 'reloadMagazine' == 0} &&
|
|
|
|
{!weaponLowered ACE_player} &&
|
|
|
|
{speed ACE_player < 1}) exitWith {false};
|
2015-01-18 20:05:17 +00:00
|
|
|
|
2015-03-05 07:32:26 +00:00
|
|
|
// Statement
|
|
|
|
[ACE_player, vehicle ACE_player, currentWeapon ACE_player] call FUNC(restWeapon);
|
|
|
|
// Return false so it doesn't block other actions
|
|
|
|
false
|
|
|
|
},
|
2015-03-05 08:51:24 +00:00
|
|
|
{false},
|
2015-03-05 07:32:26 +00:00
|
|
|
[15, [false, false, false]], false] call cba_fnc_addKeybind;
|