Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Pathfinder macro question for pf_attack template

Hi Im working on making a macro to account for Battlemind Link spell, its used often in my current party. The problem im having is that in the attack part I made two rolls but the second roll doesn't make crits appear, only the first roll. any suggestions?
1655796747

Edited 1655797159
vÍnce
Pro
Sheet Author
Hi William, Can you post your macro?
my current work in progress &{template:pf_attack} {{name=@{repeating_weapon_$1_name}}} {{attack=[[ 1d20cs>19 + [[ @{repeating_weapon_$1_total-attack} ]] ]]  [[ 1d20cs>19 + [[ @{repeating_weapon_$1_total-attack} ]] ]] vs AC }}   {{damage=[[ 1d6 +[[ @{repeating_weapon_$1_total-damage} ]] ]]}} {{crit_confirm=[[ 1d20 + [[@{repeating_weapon_$1_total-attack}]] ]] }} {{crit_damage=[[ 2d6 + ( [[ @{repeating_weapon_$1_total-damage} ]]*2) ]]}}  {{crit_confirm2=[[ 1d20 + [[@{repeating_weapon_$1_total-attack}]] ]] }} {{crit_damage2=[[ 2d6 + ( [[ @{repeating_weapon_$1_total-damage} ]]*2) ]]}}
1655878409
vÍnce
Pro
Sheet Author
Thanks William, You need to include a 2nd attack ie {{attack2}}. Otherwise the roll template doesn't have any way to confirm a crit for the 2nd attack, and therefore will not show crit damage for the 2nd attack. example; &{template:pf_attack} {{name=@{repeating_weapon_$1_name}}} {{attack=[[ 1d20cs>19 + [[ @{repeating_weapon_$1_total-attack} ]] ]] vs AC }} {{attack2=[[ 1d20cs>19 + [[ @{repeating_weapon_$1_total-attack} ]] ]] vs AC }} {{damage=[[ 1d6 +[[ @{repeating_weapon_$1_total-damage} ]] ]]}} {{damage2=[[ 1d6 +[[ @{repeating_weapon_$1_total-damage} ]] ]]}} {{crit_confirm=[[ 1d20 + [[@{repeating_weapon_$1_total-attack}]] ]] }} {{crit_damage=[[ 2d6 + ( [[ @{repeating_weapon_$1_total-damage} ]]*2) ]]}} {{crit_confirm2=[[ 1d20 + [[@{repeating_weapon_$1_total-attack}]] ]] }} {{crit_damage2=[[ 2d6 + ( [[ @{repeating_weapon_$1_total-damage} ]]*2) ]]}} After looking at the Battlemind Link spell; shouldn't the caster and an ally both roll an attack and both get to take the higher roll of either the caster or ally?  The macro above seems more like "advantage" from 5e.