Hello, I am almost finished my first custom character sheet after a lot of hard work I am stuck on one final problem. I don't really get repeating attributes! So I have some default skills and then I have repeating skills just in case players really want to add like 100 different languages or something. But I can't add the skill points invested in these extra skills to my regular skills (just to help with character creation so players don't have to manually sum the numbers). So here is my code. I have a repeating section called skills and each skill has an attribute called "modskill" which is the number I am trying to sum. Tbh I am not too experienced in javascript so yeah be nice, I am just doing this for a hobby. on("change:repeating_skills:modskill [etc.] let repeatingtotal = 0; getSectionIDs("repeating_skills", function(idarray) { for (var i = 0; i < idarray.length; i++) { getAttrs([idarray[i]], function(values){ let mod = parseInt(values.modskill) || 0; repeatingtotal = repeatingtotal + mod; }); } setAttrs({ "Total_repeat": repeatingtotal }); }); [then I sum all my other skills which is working fine and add the two together] Have I misunderstood something fundamental about repeating sections or something?