
Hi. New to the forums, I decided to try taking a stab at importing character sheets into an existing character sheet and I am hitting some challenges I'd like to see if someone can help with. Basics: 1. Character sheet is called Hero System 6e. 2. I have a Pro subscription. 3. I have have experience coding, although my js is a bit rusty and I am okay with JSON. 4. I have a character sheet template available in JSON. 5. I have gotten as far as writing a script, parsing the JSON (including some cleansing) and can log values from it. That basically leaves me with setting the values on the target sheet, which is where I am at currently. I have tried several things but so far I am not seeing the results on the character sheet. Here is a snippet of current code: var hdJSON = JSON.parse(gmnotes); log(hdJSON.str); createObj('attribute', {name : "attr_str_base", current: hdJSON.str.value, characterid: character.id}); Code produces no errors, outputs the correct STR ("16") but does not change the character sheet value. Thoughts? - E