Basically I've got a Fieldset that's a repeating inventory type deal. I want to be able to take the names of the items my players put into the text box and have it automatically added to a list depending on what type of item they check off. Example being like, they add a weapon named "Longsword" they check the weapon box, and then on another page they can select "Longsword" as their weapon. I'm 99.9% sure I need to use a sheetworker but they are WAY over my head. It took 2 days to get the repeatingsum sheetworker working for me, so I'd appreciate any help/advice. This is the code for the repeating inventory thing: <fieldset class="repeating_inventory" name="attr_inventory"> <table class="sheet-center" style="width:100%"> <tr> <td>Item</td> <td><input type="text" class="sheet-number" name="attr_item_name" /></td> <td>Weight</td> <td><input type="number" class="sheet-number" name="attr_item_weight" /></td> <td>Amount</td> <td><input type="number" class="sheet-number" name="attr_item_amount" /></td> </tr> <tr> <td colspan="6"><textarea name="attr_item_text" style="width:97%" ></textarea></td> </tr> <tr> <td>Armor <input type="checkbox" name="attr_armor_equip" /></td> <td colspan="1">Weapon <input type="checkbox" name="attr_weapon_select" value="weapon"/></td> </table> <br> </fieldset> And this is the code for the weapon selection thing: <tr> <td><button type='roll' class="sheet-skill_button" name="attr_weapon_roll-left" value='&{template:attack} {{rollname=@{weapon_name-left}}} {{attack=[[@{weapon_select-left}]]}} {{damage=[[(@{weapon_number_dice-left}@{weapon_damage_die-left}) + @{weapon_damage_bonus-left}]]}} {{dmgtype=@{weapon_type-left}}}'></button></td> <td colspan="3"><select class="sheet-select" name="attr_weapon_name-left" /> <option></option> <option></option> <option></option> <option></option> </td> </tr>