Hello there, I'm actualy working on a custom sheet and I have problems with some features I would like to include On my custom sheet, I have a "Spell" field, but not every character will have spells. So I would like to only show one, and wizard and sorcerer should be able to add some with a <fieldset class="repeating_spells"> So here's my 'script' : </tr> <tr> <td> <button type="roll" value="/roll {1d20}<[[@{MagiePhy}+@{SortAttaque_1}]] Incantation @{SortNom_1}" name="roll_SortAttaque_1" /> Attaque Roll for attack (1d20< Physical Magic which is definited in the character sheet + Intel Bonus <button type="roll" value="/roll @{SortDes_1}d6+@{SortDegats_1} Blesse à hauteur de" name="roll_SpellDmgOne"/> Dégats Roll for damage (Number of dice x d6 + Damage modificator ) </td> <td><input type="text" name="attr_SortNom_1" value="" /></td> Name field <td><input type="number" name="attr_SortDes_1" value="1" /></td> Number of dice <td><input type="number" name="attr_SortDegats_1" value="0" /></td> Damage modificator <td><input type="number" name="attr_SortAttaque_1" value="0" /></td> Intel Bonus <td><input type="number" name="attr_SortCout_1" value="0" /></td> Spell Cost <td></td> </tr> <tr> I can't figure out how to make it work properly and not only showing a blank field, but create each field that are linked : - Two Rolls (Attack / Damage) - Name - Number of D6 for damage - Bonus damage - Intel bonus - Spell Cost It works fine if I do multiple field in the character sheet, but I want it to be more 'flexible"