Hello there I am in the process of creating a character sheet for stormbringer and I have a problem with dice rolls in the sheet. I have a button next to each feature of my character sheet such as this one for my defense rolls: <div><input type="number" name="attr_arme_def" /></div> <div><input type="number" name="attr_arme_def_total" value="@{arme_def}+@{bonus_def}" disabled="true" /><button type="roll" value="/roll 1d100<@{arme_def_total}" name="roll_def" /></div> Or this one for a memory test: <div><input type="text" name="attr_conn_memory" value="Mémoriser" disabled="true"/></div> <div><input type="number" name="attr_level_conn_memory" /></div> <div><input type="number" name="attr_level_conn_memory_total" value="@{level_conn_memory}+@{bonus_conn}" disabled="true" /><button type="roll" value="/roll 1d100<@{level_conn_memory_total}" name="roll_memory" /></div> If I have 5 bonus and 50 def I have to end up with a roll of the dice to 1d100 <55 and this is the case for the first button. Starting on the same values, the formula of the second Button gives 1d100 <50 + 5 which is not what I want. Can someone explain to me what is happening? For me the formulas are the same and they should give me the same dice roll!