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

Error with formula?

I am working on a custom sheet for an upcoming game. For the skills section, here is what I have (trimmed down to relevant portion, I can post all if needed): <div class='sheet-2colrow'> <h4 class="section-head">Character Skills</h4> <div class="sheet-section"> <div class="sheet-col"> <table style="width: 100%"> <tr> <td class="attr-skill-header" ><strong>Skill</strong></td> <td class="attr-skill-header" ><strong>Name</strong></td> <td class="attr-skill-header" ><strong>Points</strong></td> <td class="attr-skill-header" ><strong>Ability</strong></td> <td class="attr-skill-header" ><strong>Bonus</strong></td> <td class="attr-skill-header" ><strong>Total</strong></td> <td class="attr-skill-header" ><strong>Roll!</strong></td> </tr> <tr> <td><input type="checkbox"></td> <td class="skill-label">Archery</td> <td><input class="skill-input" type="number" name="attr_archery_points" value="0" /></td> <td><input class="skill-input" type="number" name="attr_archery_ability" value="@{fit}" disabled="true"/></td> <td><input class="skill-input" type="number" name="attr_archery_bonus" value="0" /></td> <td><input class="skill-input" type="number" name="attr_archery_total" value="(@{archery_points} + @{archery_ability} + @{archery_bonus})" disabled="true" /></td> <td><button type='roll' value='/roll @{archery_total} - 2d6' name='roll_archery_check' /></td> </tr> <tr> <td><input type="checkbox"></td> <td class="skill-label">Animal Handling</td> <td><input class="skill-input" type="number" name="attr_animal_points" value="0" /></td> <td><input class="skill-input" type="number" name="attr_animal_ability" value="@{rsn}" disabled="true"/></td> <td><input class="skill-input" type="number" name="attr_animal_bonus" value="0" /></td> <td><input class="skill-input" type="number" name="attr_animal_total" value="(@{animal_points} + @{animal_ability} + @{animal_bonus})" disabled="true" /></td> <td><button type='roll' value='/roll @{animal_total} - 2d6' name='roll_animal_check' /></td> </tr> <tr> <td><input type="checkbox"></td> <td class="skill-label">Athletics</td> <td><input class="skill-input" type="number" name="attr_athletics_points" value="0" /></td> <td><input class="skill-input" type="number" name="attr_athletics_ability" value="@{fit}" disabled="true"/></td> <td><input class="skill-input" type="number" name="attr_athletics_bonus" value="0" /></td> <td><input class="skill-input" type="number" name="attr_athletics_total" value="(@{athletics_points} + @{athletics_ability} + @{athletics_bonus})" disabled="true" /></td> <td><button type='roll' value='/roll @{athletics_total} - 2d6' name='roll_athletics_check' /></td> </tr> <tr> <td><input type="checkbox"></td> <td class="skill-label">Boating</td> <td><input class="skill-input" type="number" name="attr_boating_points" value="0" /></td> <td><input class="skill-input" type="number" name="attr_boating_ability" value="@{fit}" disabled="true"/></td> <td><input class="skill-input" type="number" name="attr_boating_bonus" value="0" /></td> <td><input class="skill-input" type="number" name="attr_boating_total" value="(@{boating_points} + @{boating_ability} + @{boating_bonus})" disabled="true" /></td> <td><button type='roll' value='/roll @{boating_total} - 2d6' name='roll_boating_check' /></td> </tr> Obviously I have a bunch more skills. When I launch the roll 20 app, all of the skills rolls work, except for Animal Handling. It says "There was an error with your formula. Please try again." I don't see an error. I used the same code for every skill, and all but that one work. Am I missing something or overlooking something?
Oh, and yes, it is referencing the 'rsn' value, and not 'fit'. But I have changed it to 'fit' just for giggles, and it still did not work.
Guess it was something with my browser. Had an idea, so hopped back on, and now it works perfectly fine...::shrug::