Moved all deployables to equipment submenu

This commit is contained in:
BaerMitUmlaut 2016-06-02 10:35:33 +02:00
parent 95573ee711
commit cc83bf64d6
2 changed files with 18 additions and 14 deletions

View File

@ -5,13 +5,15 @@ class CfgVehicles {
class Man;
class CAManBase: Man {
class ACE_SelfActions {
class ACE_TacticalLadders {
displayName = CSTRING(Deploy);
condition = QUOTE(backpack _player == 'ACE_TacticalLadder_Pack');
statement = QUOTE([_player] call FUNC(deployTL));
exceptions[] = {};
showDisabled = 1;
priority = 4;
class ACE_Equipment {
class ACE_TacticalLadders {
displayName = CSTRING(Deploy);
condition = QUOTE(backpack _player == 'ACE_TacticalLadder_Pack');
statement = QUOTE([_player] call FUNC(deployTL));
exceptions[] = {};
showDisabled = 1;
priority = 4;
};
};
};
};

View File

@ -5,13 +5,15 @@ class CfgVehicles {
class Man;
class CAManBase: Man {
class ACE_SelfActions {
class GVAR(place) {
displayName = CSTRING(Placedown);
condition = QUOTE([ARR_2(_player,'ACE_Tripod')] call EFUNC(common,hasItem));
statement = QUOTE([ARR_2(_player,'ACE_Tripod')] call FUNC(place));
showDisabled = 0;
priority = 2;
icon = QPATHTOF(UI\w_sniper_tripod_ca.paa);
class ACE_Equipment {
class GVAR(place) {
displayName = CSTRING(Placedown);
condition = QUOTE([ARR_2(_player,'ACE_Tripod')] call EFUNC(common,hasItem));
statement = QUOTE([ARR_2(_player,'ACE_Tripod')] call FUNC(place));
showDisabled = 0;
priority = 2;
icon = QPATHTOF(UI\w_sniper_tripod_ca.paa);
};
};
};
};