Hi. Im doing a custom template for a Spanish game. It's almost finished, but Im finding some troubles with dice automation. What I want to do: An attritube has stored a numeric value with the sides of the dice to roll (ie: 4 for 1d4). I want to do a roll with this value + 2 (ie: 1d6). The problem I'm facing: /roll 1d@{Car}+2 = /roll 1d4+2 /roll 1d@{Car+2} = error If I use a hidden input to calculate it in another field, it will work the same way. The code I have: <select name="attr_Car" style="width: 12em;display:inlineblock;"> <option value="4">Poco apto (1D4)</option> <option value="6">Normal (1D6)</option> <option value="8">Destacado (1D8)</option> <option value="10">Excelente (1D10)</option> <option value="12">Insuperable (1D12)</option> </select>