mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
834 B
C++
23 lines
834 B
C++
class CfgVehicles {
|
|
class Man;
|
|
class CAManBase: Man {
|
|
class ACE_SelfActions {
|
|
class ACE_Equipment {
|
|
class ADDON {
|
|
displayName = CSTRING(ActionCategory);
|
|
condition = QUOTE(_player call FUNC(hasFlag));
|
|
insertChildren = QUOTE(_this call FUNC(getActions));
|
|
icon = QPATHTOF(data\icons\place\white_place_icon.paa);
|
|
|
|
class GVAR(furlFlag) {
|
|
displayName = CSTRING(Furl);
|
|
condition = QUOTE(_player call FUNC(carriesFlag));
|
|
statement = QUOTE(_player call FUNC(furlFlag));
|
|
icon = QPATHTOF(data\icons\carry\white_furl_icon.paa);
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|