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-22 09:00:40 +00:00
expression = QUOTE(if (_value) then {[ARR_3(objNull,[_this],true)] call FUNC(moduleHandcuffed)});
2016-02-20 12:36:53 +00:00
typeName = "BOOL";
condition = "objectBrain";
defaultValue = "(false)";
2016-02-20 12:36:53 +00:00
};
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);
2016-02-22 09:00:40 +00:00
expression = QUOTE(if (_value) then {[ARR_3(objNull,[_this],true)] call FUNC(moduleSurrender)});
2016-02-20 12:36:53 +00:00
typeName = "BOOL";
condition = "objectBrain";
defaultValue = "(false)";
2016-02-20 12:36:53 +00:00
};
};
};
};
};
};