Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Select and Auto-Calculating Values

Hello! I've been trying to make a character sheet, but I'm having trouble. I'm using select to fill in attributes, but it doesn't seem to work with auto-calculating values. I have <input type="number" style="width:40px;height:30px" name="attr_aura" placeholder="1" /> <span>Agilidade  <select name="attr_agi" class="atr" style="width:40px;height:30px" checked='true'>           <option value="1">1</option>           <option value="2">2</option>           <option value="3">3</option>           <option value="4">4</option>           <option value="5">5</option>           <option value="6">6</option>           </select></span> How do add both values together for an auto-calculating value? Thanks in advance.
1531750774

Edited 1531750840
Scott C.
Forum Champion
Sheet Author
API Scripter
Compendium Curator
The autocalc input needs to be disabled: <input type="number" disabled=true value="@{Aura}+@{agi}" name="attr_autocalced"> Note that sheet workers and autocalc don't play well together. You should use one or the other.
Thanks, that solved it!