One way to check what a repeating attribute is supposed to be is to reference a 'good' value from another spell. If you type @{selected|repeating_spell-cantrip_$0_spellcomp_v} into chat on a character with a cantrip, then you get '{{v=1}}' as the output, so that's what you'll need to put for the ChatSetAttr value. The issue is the double right braces end the multi-line command for ChatSetAttr, and there's no replace option for those like there is for brackets, question marks, or 'at' symbols. So you've got two options: you can delete ChatSetAttr and then manually re-import it, adding a replace function for braces (shown in bold here - about line 20 of the code): replacers = [ [/</g, "["], [/\\lbrak/g, "["], [/>/g, "]"], [/\\rbrak/g, "]"], [/\\lbrace/g, "{"], [/\\rbrace/g, "}"], [/;/g, "?"], [/\\ques/g, "?"], [/`/g, "@"], [/\\at/g, "@"], [/~/g, "-"], [/\\n/g, "\n"], ], Or you can simply make the command a single-line command. (Unless someone else knows a way to incorporate double right braces in a ChatSetAttr multi-line command!) For setting the Spell Ability to 'Intelligence', you are missing an underscore: ' spell_ability'. Also, the sheetworkers automatically convert the selection to a different attribute reference such as ' @{intelligence_mod}+', so you need to use ' \at{intelligence_mod}+' and not 'INTELLIGENCE'. The value for the Concentration box is '{{concentration=1}}' Here's the final code on a single line (updated with the Concentration Box checked): !setattr --sel --replace --repeating_spell-3_-CREATE_spellname|My Spell --repeating_spell-3_-CREATE_spellschool|conjuration --repeating_spell-3_-CREATE_spellcastingtime|1 action --repeating_spell-3_-CREATE_spellrange|Self --repeating_spell-3_-CREATE_spell_ability|\at{intelligence_mod}+ --repeating_spell-3_-CREATE_spellcomp_v|{{v=1}} --repeating_spell-3_-CREATE_spellcomp_s|{{s=1}} --repeating_spell-3_-CREATE_spellcomp_m|{{m=1}} --repeating_spell-3_-CREATE_spellconcentration|{{concentration=1}} --repeating_spell-3_-CREATE_spellduration|1 minute --repeating_spell-3_-CREATE_spelloutput|ATTACK --repeating_spell-3_-CREATE_spellattack|Melee --repeating_spell-3_-CREATE_spelldamage|1d6 --repeating_spell-3_-CREATE_spelldamagetype|cold --repeating_spell-3_-CREATE_spelldamage2|1d6 --repeating_spell-3_-CREATE_spelldamagetype2|necrotic --repeating_spell-3_-CREATE_spelldescription|My Cool Spell Description