I have a repeating section, approximately like so <fieldset class="repeating_A">
<span name="attr_X"></span>
<span name="attr_Y"></span>
</fieldset> I would like a roll button, which puts the values X and Y to the chat. <fieldset class="repeating_A">
<span name="attr_X"></span>
<span name="attr_Y"></span>
<button type="roll" name="roll_B" value="&{template:default} {{X=@{X}}} {{Y=@{Y}}}">say</button>
</fieldset> This above doesn't seem to work. I can do value="&{template:default} {{X=@{repeating_A_$0_X}}} {{Y=@{repeating_A_$0_Y}}}" But now every section item outputs the value of the first item. Can I make the roll buttons pick out their own section item values correctly?