ACE3/addons/captives/CfgEden.hpp

31 lines
1.3 KiB
C++
Raw Normal View History

2016-02-20 12:36:53 +00:00
class Cfg3DEN {
class Object {
class AttributeCategories {
class ace_attributes {
class Attributes {
2016-02-20 13:07:39 +00:00
class ace_isHandcuffed {
2016-02-20 12:36:53 +00:00
property = QUOTE(ace_isHandcuffed);
control = "Checkbox";
displayName = CSTRING(ModuleHandcuffed_DisplayName);
tooltip = CSTRING(ModuleHandcuffed_Description);
2016-02-20 13:07:39 +00:00
expression = QUOTE([ARR_2(_this,_value)]call FUNC(setHandcuffed));
2016-02-20 12:36:53 +00:00
typeName = "BOOL";
condition = "objectBrain";
defaultValue = false;
};
2016-02-20 13:07:39 +00:00
class ace_isSurrendered {
2016-02-20 12:36:53 +00:00
property = QUOTE(ace_isSurrendered);
control = "Checkbox";
displayName = CSTRING(ModuleSurrender_DisplayName);
tooltip = CSTRING(ModuleSurrender_Description);
expression = QUOTE([ARR_2(_this,_value)]call FUNC(setSurrendered));
typeName = "BOOL";
condition = "objectBrain";
defaultValue = false;
};
};
};
};
};
};