Greetings people I have a problem with repeating sections. This is my code: <fieldset class="repeating_skills"> <input type="text" name="attr_FertigkeitName" value=""> <input type="number" name="attr_FertigkeitWert" value="0" title="Fertigkeitswert ohne Boni" /> <select name="attr_FertigkeitAttribut"> <option value="@{Stärke}" selected="selected">Stärke</option> <option value="@{Geschick}">Geschick</option> <option value="@{Konstitution}">Konstitution</option> <option value="@{Willenskraft}">Willenskraft</option> <option value="@{Weisheit}">Weisheit</option> <option value="@{Charisma}">Charisma</option> <option value="@{Wahrnehmung}">Wahrnehmung</option> </select> <input type="text" name="attr_FertigkeitAttributBonus" value="(@{FertigkeitAttribut})" disabled="true" /> <input type="text" name="attr_FertigkeitGesamt" value="((@{FertigkeitWert})+(@{FertigkeitAttributBonus}))" disabled="true" /> <button type="roll" value= "&{template:custom} {{title=Probe auf @{selected|repeating_skills_FertigkeitName}}} {{subtitle=@{selected|character_name}}} {{result=[[ [[floor([[[[@{selected|repeating_skills_skill_total}]] / 3]])]]d6 + [[[[@{selected|repeating_skills_skill_total}] % 3]] + ?{Modifikator|0}]] }}" name="FertigkeitProbe"></button> </fieldset> The problem lies in the roll button at the end. It can't find the correct attributes. The wiki says you need some variable, but I don't understand how to put it in correctly. Can somebody help me please? Kind regards Blacksaeus PS: I use "Jakob's Better Default Rolltemplate" and I hope you can handle the german terms in the code. ;)