ACE3/addons/flags/CfgVehicles.hpp

23 lines
830 B
C++
Raw Normal View History

2022-06-10 19:46:06 +00:00
class CfgVehicles {
class Man;
class CAManBase: Man {
class ACE_SelfActions {
class ACE_Equipment {
class ADDON {
displayName = CSTRING(action);
condition = QUOTE(_player call FUNC(hasFlag));
insertChildren = QUOTE(_this call FUNC(addActions));
2022-06-10 20:14:32 +00:00
icon = QPATHTOF(data\icons\place\white_place_icon.paa);
2022-06-10 19:46:06 +00:00
class GVAR(furlFlag) {
displayName = CSTRING(furlFlag);
condition = QUOTE(_player call FUNC(carriesFlag));
statement = QUOTE(_player call FUNC(furlFlag));
2022-06-10 20:14:32 +00:00
icon = QPATHTOF(data\icons\carry\white_furl_icon.paa);
2022-06-10 19:46:06 +00:00
};
};
};
};
};
};