pabstmirror 34 Posted February 22, 2016 There is a problem with the combo/dropdown box in the 3d editor Cfg3DEN >> Attributes >> Combo Any multi option that has a `class values` entry with a value of 0 will return -1 instead To Reproduce: Place a ModuleTaskCreate_F, sync to player Set owner as "Synchronized objects only" (value = 0) The module does not work. Check (moduleVariable getVariable "owner" = -1) Unbinned SQM also shows `value=-1;` Check a3\3den\UI\Attributes\Combo.hpp attributeLoad: if (isnumber (_x >> 'value')) then { _ctrlCombo lbsetdata [_lbadd,str getnumber (_x >> 'value')]; _ctrlCombo lbsetvalue [_lbadd,-1]; attributeSave if (_return == 0) then { _return = _ctrlCombo lbvalue lbcursel _ctrlCombo }; So if value = 0, _return will initially be 0 but be switched to the lbValue of -1 Ref http://feedback.arma3.com/view.php?id=28031 https://github.com/acemod/ACE3/issues/3339 3 Share this post Link to post Share on other sites