So, I have a Monk. I have created a Class Resource on the sheet, called Ki. That's the easy bit. I have a Macro that was created by Mark.G for Flurry of Blows:  &{template:5eDefault} {{weapon=2}} {{title=Flurry of Blows}} {{subheader=@{Selected|Token_Name}}} {{subheaderright=Cost: 1 Ki}} {{attack=[[ 1d20 + @{Dexterity_Mod}[Dex] + @{PB}[Prof] ]]}} {{attackadv=[[ 1d20 + @{Dexterity_Mod}[Dex] + @{PB}[Prof] ]]}} {{damage=[[ 1d6 +  @{Dexterity_Mod}[Dex] ]]}} {{critdamage=[[1d6]] Addt'l  Dmg}}}{{spellshowattack=1}}{{spellattack=[[ 1d20 + @{Dexterity_Mod}[Dex] + @{PB}[Prof] ]]}} {{spellshowattackadv=1}}{{spellattackadv=[[ 1d20 + @{Dexterity_Mod}[Dex] + @{PB}[Prof] ]]}}{{spellshowdamage=1}}{{spelldamage=[[ 1d6 + @{Dexterity_Mod}[Dex] ]] }}{{spellcancrit=1}}{{spellcritdamage=[[1d6]] Addt'l Dmg}}   And I was trying to figure out how to use the DnD5e Character Sheet resource tracking, from the Wiki it says:   --------------------------------------------------------------------------------------------------------------------------------------------------------------------------  Class   A series of attributes for each class of the format : classname_level    Class resources repeating section. See notes on repeating sections above. All attributes here start with  repeating_classresources_X_  where X is the row number starting from 0  ClassResourceName  ClassResourceRecharge  ClassResourceTotal  ClassResourceTotal_max      Class features, class_abilities_and_feats    Class Actions repeating section. See notes on repeating sections above. All attributes here start with  repeating_classactions_X_  where X is the row number starting from 0   classactionname  classactionsubname (coming in next release)  classactiondescription     -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- I have tried to use @{{repeating_classresources_0_}} - Which, if I am reading the documentation correctly should return the first Class Resource I have set, which would be Ki. But instead, I am getting the No attribute was found for @{character|{repeating_classresources_0_}. What am I doing wrong?  Basically, I just want to deduct 1 from the 'Current' class resource box, whenever I use the macro listed above.