
I have char sheet based loosely on D&D 5E OGL. I made nicely sheet to calculate Ability Modifiers with those elements: <input class="input" type="number" name="attr_str" value="10"/> <input class="input" type="number" disabled="true" name="attr_str_mod" value="floor((@{str}-10)/2)" /> So it's clear that str_mod is calcuated from str attribute. However, when I want to use the same method to check what is taken in prof attribute - I get blank, empty cell. :/ <div class="sheet_proficiency"> <label>Proficiency Bonus </label><input type="number" name='attr_prof' /><br/> </div> <br/> <input class="input" type="number" name='txt_prof' value="@{prof}" /> I do not understand what's going further with it - adding prof value to the sav_thr_str when checkbox marked is much further away then? Cause even without checboxes marked, sheet should simply take str_mod and put in sav_thr_str_val , don't it? <td><input type='checkbox' name='sav_thr_str' value="@{prof}" /></td> <td><label>Strength </label> </td> <td><input class="input" type="number" name='sav_thr_str_val' value="@{str_mod}" /></td>