
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?