Can someone point me to documentation on how to add roll buttons with dynamic values? For example: <fieldset class="repeating_weapons">
<input type="text" name="attr_weapon_name"/>
<span>Stone:</span> <input type="number" value="0" name="attr_weapon_enc"/>
<span>Dmg:</span> <input class="shortText60" type="text" name="attr_weapon_dmg"/>
<span>Attribute:</span> <select class="weapon_attr" name="attr_weapon_attr">
<option value="strength_mod">STR</option>
<option value="dexterity_mod">DEX</option>
</select>
<span>Throw:</span> <span name="attr_weapon_throw"></span>
<button type="roll" value="/roll {@attr_weapon_throw}" name="roll_weapon_throw"></button>
</fieldset> This doesn't work. I assume, because it's in a repeating item, I need to do something more complex to get it to work.