Is there a way to add more sources of extra non-crit damage for attacks aside from the global and attack-specific options? That only allows for two sources and I'm playing a character who will potentially have 4 or 5 different sources of extra damage on his weapon attacks; specifically Vital Strike, Bane, Holy, Vicious (both to the enemy and to self), and Flaming/Shock/Freezing. I attempted to edit the Macro Text to include additional lines but they don't parse correctly. I added it like this: @{PC-Whisper} &{template:pf_attack} @{toggle_attack_accessible} @{toggle_rounded_flag} {{color=@{rolltemplate_color}}} {{character_name=@{character_name}}} {{character_id=@{character_id}}} {{subtitle}} {{name=@{name}}} {{attack=[[ 1d20cs>[[ @{crit-target} ]] + @{attack_macro} ]]}} {{damage=[[@{damage-dice-num}d@{damage-die} + @{damage_macro} ]]}} {{crit_confirm=[[ 1d20 + @{attack_macro} + [[ @{crit_conf_mod} ]] ]]}} {{crit_damage=[[ [[ @{damage-dice-num} * (@{crit-multiplier} - 1) ]]d@{damage-die} + ((@{damage_macro}) * [[ @{crit-multiplier} - 1 ]]) ]]}} {{type=@{type}}} {{weapon_notes=@{notes}}} @{iterative_attacks} @{macro_options} {{vs=@{vs}}} {{vs@{vs}=@{vs}}} {{precision_dmg1=@{precision_dmg_macro}}} {{precision_dmg1_type=@{precision_dmg_type}}} {{precision_dmg2=@{global_precision_dmg_macro}}} {{precision_dmg2_type=@{global_precision_dmg_type}}} {{precision_dmg3=@{precision_dmg3_macro}}} {{precision_dmg3_type=@{precision_dmg3_type}}} {{critical_dmg1=@{critical_dmg_macro}}} {{critical_dmg1_type=@{critical_dmg_type}}} {{critical_dmg2=@{global_critical_dmg_macro}}} {{critical_dmg2_type=@{global_critical_dmg_type}}} {{attack1name=@{iterative_attack1_name}}} I created my own attributes called @{precision_dmg3_macro} and @{precision_dmg3_type} and defined them as [[2d6]] and TEST to try to imitate what's in the macro text, but clearly I'm missing something because it comes out like this: How do I get these attributes to display like the character sheet options do, or is it not possible to do this and I need to build my own macro from scratch? I realize that I can simply remove precision_dmg3_type and change {{precision_dmg3=@{precision_dmg3_macro}}} to {{Vicious=@{precision_dmg3_macro}}}, but that still gets dumped on the bottom of the template and I'd like to have them all lined up and indented like the character sheet options so it's plain to see and easy to add up or ignore if it's not relevant against the particular enemy.