Hey there! Several of my Pathfinder 1e games on Roll20 use the Pathfinder Simple (Cazra) character sheet. I tried to use the character sheet's roll template for my macros and can't bring it to work at all. E.g. using this macro code: &{template:default} {{name=Sand Blast 30ft.}} {{attack=[[1d20cs>20 + @{bab} [BAB] + @{dex_mod} [DEX] ]]}} {{confirm Crit=[[1d20cs>20 + @{bab} [BAB] + @{dex_mod} [DEX] ]]}} {{damage=[[(2d6+2) [BaseDamage] + @con_mod [CON] + 2 [KiPoolNotEmpty] +1 [PointBlank] ]] magic slashing damage}} {{critical Damage=[[(4d6+4) [BaseDamage] + @con_mod [CON] + 4 [KiPoolNotEmpty] + 2 [PointBlank] ]] magic slashing damage}} Provides a nice formatted roll output: Now this is using the default template, so the result differs from the character sheet's usual roll visuals: Trying to use the same macro code with the sheet's own template: &{template: pf } {{name=Sand Blast 30ft.}} {{attack=[[1d20cs>20 + @{bab} [BAB] + @{dex_mod} [DEX] ]]}} {{confirm Crit=[[1d20cs>20 + @{bab} [BAB] + @{dex_mod} [DEX] ]]}} {{damage=[[(2d6+2) [BaseDamage] + @con_mod [CON] + 2 [KiPoolNotEmpty] +1 [PointBlank] ]] magic slashing damage}} {{critical Damage=[[(4d6+4) [BaseDamage] + @con_mod [CON] + 4 [KiPoolNotEmpty] +2 [PointBlank] ]] magic slashing damage}} Unfortunately just results in an empty box: I found the sheet's git repository, but neither there nor in the wiki is any documentation to be found on how the template can be properly used in macros. Has anyone used templated macros in this character sheet before or is able to point me in the direction of any kind of documentation?