Hello. I am using Pathfinder Community Sheet. And below is the macro I'm using: /w gm &{template:pf_generic} {{character_name=@{selected|character_name}}} {{name=Saves}} {{?{Saves| Fort, Fort= [[ 1d20+ [[ @{selected|fort} ]] ]] | Ref, Reflex= [[ 1d20+ [[ @{selected|ref} ]] ]] | Will, Will= [[ 1d20+ [[ @{selected|will} ]] ]] }}} I would like to add the following snippet to the macro " + ?{Modifiers|0} ", but unfortunately for the life of me I just cannot figure where it goes. Any help regarding the matter would be highly appreciated! Also, what would be the snippet to also include the save notes from the character sheet using this method...? Edit Well, after hours of trying, I was able to come up with this code: /w gm &{template:pf_defense} {{character_name=@{selected|character_name}}} {{name=Saves}} {{save_notes=@{selected|Save-notes}}} {{?{Saves| Fort, Fort= [[ 1d20 + [[ @{selected|fort} ]] ]] | Ref, Reflex= [[ 1d20+ [[ @{selected|ref} ]] ]] | Will, Will= [[ 1d20+ [[ @{selected|will} ]] ]] } + [[ ?{Modifiers|0} ]] }} It works alright, but the input modifier prints as a separate field for the roll result. eg. 30 + 4, instead showing as 34. How do I get them to calculate together?