Searching is generally useless, so hear I go: What's the current best way to get and use the "pseudo-attributes" (calling them "pseudo-attributes" because they don't surface beyond the character sheet) of repeating section in a roll button on each row, when calling an API script (or not). Example: <fieldset class="repeating_ranged-weapons">
<div class="sheet-row">
<div class="sheet-item sheet-small sheet-black">
<input type="text" name="attr_ranged-name"/>
</div>
<!-- more fields -->
<div class="sheet-item sheet-nano sheet-black">
<button type='roll' name='roll_ranged-attack' value='!ammo @{character_id} @{repeating_ranged-weapons_???} -1
/em fires a @{ranged-name}!
/roll 1d100<[[@{ballisticskill}+@{ranged-difficulty}+@{ranged-attack-type}+@{ranged-aim}]]'></button>
</div>
</div> <!-- /Ranged Weapon Items -->
</fieldset> I cannot "know" the index in the repeating section, or can I? I've seen in other character sheets examples in any of the following formats: @{repeating_ranged-weapons_[number]_ranged-ammo} @{repeating_ranged-weapons_#_ranged-ammo} Examples in other character sheets with attempts do not tie back to Roll20 documentation, but mostly had to go to search (in vain) for where ideas germinated, then chased rabbits down holes, where it seems that most attempts are hacks to surface the pseudo-attribute in a field, but nothing on the why or how in comments (or easily hunted in these forums). What am I doing wrong? Examples and documentation would be helpful.