I created a script to create characters for Mork Borg. It works fine except for the repeating sections. The script generates a weapon, a power, and three pieces of equipment: Weapon Knife/Melee/d4 Equipment1 nothing Equipment2 bomb (sealed bottle, d10 damage) Equipment3 heavy chain 15 feet Power Death - All creatures within 30 feet lose a total of 4d10 HP. and attempts to add them to the repeating sections of the character sheet: AddGear: function (b,c) { sendChat('API', '!setattr --name ' + SCVMBuild.Name + ' --repeating_weapons_-CREATE_weaponname|' + SCVMBuild.weaponname + ' --repeating_weapons_-CREATE_attacktype|' + SCVMBuild.attacktype + ' --repeating_weapons_-CREATE_weapondamage|' + SCVMBuild.weapondamage + ''); sendChat('API', '!setattr --name ' + SCVMBuild.Name + ' --repeating_equipment_-CREATE_equipment|' + SCVMBuild.Equipment1 + ' --repeating_equipment_-CREATE_equipment|' + SCVMBuild.Equipment2 + ' --repeating_equipment_-CREATE_equipment|' + SCVMBuild.Equipment3 + ''); sendChat('API', '!setattr --name ' + SCVMBuild.Name + ' --repeating_powers_-CREATE_power|' + SCVMBuild.Power + ''); }, It works fine for the weapon and power, but only Equipment3 is showing up on the character sheet. Suggestion?