From f34c1c8e241c242b09e14d4733fb3349b366ff22 Mon Sep 17 00:00:00 2001 From: "DESKTOP-UH65DCE\\MusTanG" Date: Wed, 6 Dec 2017 10:22:27 -0600 Subject: [PATCH] default select weapon on keys 1,2,3 Keys 1,2 and 3 now will process for a holstered weapon if the FAV BAR item in slots assigned to those keys are not present in inventory/weapons. Interaction Items not in inventory will throw "Item Not Found" message --- .../epoch_code/gui/scripts/favBar/epoch_favBar_action.sqf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Sources/epoch_code/gui/scripts/favBar/epoch_favBar_action.sqf b/Sources/epoch_code/gui/scripts/favBar/epoch_favBar_action.sqf index 867f9f23..b89ed3e0 100644 --- a/Sources/epoch_code/gui/scripts/favBar/epoch_favBar_action.sqf +++ b/Sources/epoch_code/gui/scripts/favBar/epoch_favBar_action.sqf @@ -37,7 +37,7 @@ if !(_throw isequalto "") then { } else { _itemHasInteraction = str(missionConfigFile >> "CfgItemInteractions" >> _item) != ""; - if (_itemHasInteraction) then { + if ((_itemHasInteraction) && (_item in magazines player)) then { EPOCH_InteractedItem = ["",_item,""]; [] call EPOCH_consumeItem; EPOCH_favBar_itemConsumed = true; @@ -53,7 +53,11 @@ else { _Fav_FastWeaponSwitching = ["CfgEpochClient", "Fav_FastWeaponSwitching", false] call EPOCH_fnc_returnConfigEntryV2; if (_curSlot == _slot && !_Fav_FastWeaponSwitching && _errorCode in [1,2]) then {player playAction "reloadMagazine";}; }; - + if(_errorCode in [0,3]) then{ + if(!(true in EPOCH_modKeys) && (_kee isEqualTo 2))then{player selectWeapon (primaryWeapon player)}; + if(!(true in EPOCH_modKeys) && (_kee isEqualTo 3))then{player selectWeapon (handgunWeapon player)}; + if(!(true in EPOCH_modKeys) && (_kee isEqualTo 4))then{player selectWeapon (secondaryWeapon player)}; + }; if (_errorCode isEqualTo 2) then {"Not enough space, item dropped on the ground!" call epoch_message;}; if (_errorCode isEqualTo 4 && _item != (currentWeapon player)) then {"Not enough space!" call epoch_message;}; if (_errorCode isEqualTo 3) then {"Item not found!" call epoch_message;};