I am currently trying to create a custom character sheet and am struggling with fieldsets. I want to do a sheet for 7th Sea 1st edition. You have skills there that each contain several knacks. So I tried nested fieldsets like so: <fieldset class="repeating_skills">
<input type="text" name="attr_skillname" />
<fieldset class="repeating_knacks">
<input type="text" name="attr_knackname" />
<input type="number" name="attr_knachvalue" />
<select name="attr_attribute" class="dtype">
<option value="Muskeln">Muskeln</option>
<option value="Geschick">Geschick</option>
<option value="Verstand">Verstand</option>
<option value="Entschlossenheit">Entschlossenheit</option>
<option value="Panache">Panache</option>
</select>
</fieldset>
</fieldset>
I now am wondering about two things: 1. The values seem to be stored, but I don't see them on the attributes & abilites tab in the character. Why is this the case? 2. I would like to add buttons to actually roll the check. However, since I don't know what the real attribute name will be, I don't know how to reference the knack value correctly. I just started using Roll20, so it is quite possible that my question is stupid or already answered - but I didn't find a good solution for this. Also: hello to all of you, I hope to some day play a round with you!