mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
525 B
C++
19 lines
525 B
C++
class CfgVehicles {
|
|
class Man;
|
|
class CAManBase: Man {
|
|
class ACE_SelfActions {
|
|
class ACE_Equipment {
|
|
class GVAR(CutFence) {
|
|
displayName = "$STR_ACE_logistics_wirecutter_CutFence";
|
|
condition = QUOTE([_player] call FUNC(canCutFence));
|
|
statement = QUOTE([_player] call FUNC(cutDownFence));
|
|
exceptions[] = {};
|
|
showDisabled = 1;
|
|
priority = 0;
|
|
icon = PATHTOF(UI\wirecutter_ca.paa);
|
|
hotkey = "C";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}; |