
I have this issue while trying to do a roll. I have a repeating_active field already made and the repitem in that field is finalized. In the button for the rolling an attack in this case, if I change it from {{name=@{repeating_active_$id_skill_name}}} to {{name=@{repeating_active_skill_name}}} I find that i get a different error which is the second image. The attr_skill_name in the span does reference the name correctly, just to point out. The only difference between this repeating_active and the original is that this repeating_active is filtered by type_is_* where * is the skill type. For the example I am showing, it is type_is_attack How do I reference the skill name to make it display correctly in the chat when I roll it? <!-- ATK --> < div class = "tech-accordion" > < input type = "checkbox" id = "tech-atk-toggle" class = "tech-toggle" /> < label for = "tech-atk-toggle" class = "tech-box" > < span class = "tech-label" > ATK </ span >< span class = "tech-arrow" > ▼ </ span > </ label > < div class = "tech-accordion-panel" > < div class = "tech-list atk" > < fieldset class = "repeating_active" > <!-- flags FIRST so CSS can see them --> < input type = "hidden" name = "attr_skill_finalized" value = "0" /> < input type = "hidden" name = "attr_type_is_attack" value = "0" /> < input type = "hidden" name = "attr_type_is_save" value = "0" /> < input type = "hidden" name = "attr_type_is_other" value = "1" /> <!-- compact tech card --> < button type = "roll" class = "tech-mini" value = "&{template:default} {{name=@{repeating_active_$id_skill_name}}} {{roll=[[1d20 + @{spell_attack_bonus}]]}} {{Attack Bonus=@{spell_attack_bonus}}}" > < span class = "tech-mini-name" name = "attr_skill_name" ></ span > </ button > </ fieldset > </ div > </ div > </ div >