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 .
×

Pathfinder offical sheet TWF macro does not show all rolls

Hi, my Macro won't show up some things: my Macro: &{template:pc}{{showchar=[[1]]}}{{charname=Fighter}}{{name=Axe and Schild}}{{attack=1}} {{type=attackdamage}}{{name=Axe 1}}{{roll=[[1d20cs>15]]}}{{critconfirm=[[1d20]]}}{{dmg1=[[1d6]]}}{{dmg1crit=[[2d6+2]]}}{{roll1name=Shield Bash 1}}{{roll1=[[1d20cs>15]]}}{{critconfirm1=[[1d20]]}}{{roll1dmg1=[[1d6]]}}{{roll1dmg1crit=[[2d6+2]]}}{{roll2name=Axe Haste}}{{roll2=[[1d20cs>15]]}}{{critconfirm2=[[1d20]]}}{{roll2dmg1=[[1d6]]}}{{roll2dmg1crit=[[2d6+2]]}}{{roll3name=Shield Haste}} {{roll3=[[1d20cs>15]]}}{{critconfirm3=[[1d20]]}}{{roll3dmg1=[[1d6]]}}{{roll3dmg1crit=[[2d6+2]]}}{{roll4name=Axe 2}}{{roll4=[[1d20cs>15]]}}{{critconfirm4=[[1d20]]}}{{roll4dmg1=[[1d6]]}}{{roll4dmg1crit=[[2d6+2]]}}{{roll5name=Shield Bash 2}}{{roll5=[[1d20cs>15]]}}{{critconfirm5=[[1d20]]}}{{roll5dmg1=[[1d6]]}}{{roll5dmg1crit=[[2d6+2]]}}{{roll6name=Axe 3}}{{roll6=[[1d20cs>15]]}}{{critconfirm6=[[1d20]]}}{{roll6dmg1=[[1d6]]}}{{roll6dmg1crit=[[2d6+2]]}}{{roll7name=Rend}}{{roll7=[[0]]}}{{roll7dmg1=[[1d6]]}} my Problems: no At and dmg for attack 0 no dmg for attack 1 no Names for attack 1-7 Can anyone see my errors? Thanks a lot!!! Things I will do later: query for Haste Bull rush correct AT and dmg values bonus dmg from bane notes and conditions
1595731314

Edited 1595731425
Oosh
Sheet Author
API Scripter
I've only got a passing familiarity with PF, but try this: &{template:pc} {{showchar=[[1]]}} {{charname=Fighter}} {{name=Axe and Schild}} {{attack=1}} {{type=attackdamage}} {{roll=[[1d20cs>15]]}} {{critconfirm=[[1d20]]}} {{rolldmg1=[[1d6]]}} {{rolldmg1crit=[[2d6+2]]}} {{roll1name=Shield Bash 1}} {{roll1=[[1d20cs>15]]}} {{critconfirm1=[[1d20]]}} {{roll1dmg1=[[1d6]]}} {{roll1dmg1crit=[[2d6+2]]}} {{roll2name=Axe Haste}} {{roll2=[[1d20cs>15]]}} {{critconfirm2=[[1d20]]}} {{roll2dmg1=[[1d6]]}} {{roll2dmg1crit=[[2d6+2]]}} {{roll3name=Shield Haste}} {{roll3=[[1d20cs>15]]}} {{critconfirm3=[[1d20]]}} {{roll3dmg1=[[1d6]]}} {{roll3dmg1crit=[[2d6+2]]}} {{roll4name=Axe 2}} {{roll4=[[1d20cs>15]]}} {{critconfirm4=[[1d20]]}} {{roll4dmg1=[[1d6]]}} {{roll4dmg1crit=[[2d6+2]]}} {{roll5name=Shield Bash 2}} {{roll5=[[1d20cs>15]]}} {{critconfirm5=[[1d20]]}} {{roll5dmg1=[[1d6]]}} {{roll5dmg1crit=[[2d6+2]]}} {{roll6name=Axe 3}} {{roll6=[[1d20cs>15]]}} {{critconfirm6=[[1d20]]}} {{roll6dmg1=[[1d6]]}} {{roll6dmg1crit=[[2d6+2]]}} {{roll7name=Rend}} {{roll7=[[0]]}} {{roll7dmg1=[[1d6]]}} The "roll 0" attack gets moved into the main section as soon as you have roll1 present - the roll no longer goes in the header section. The {{dmg1}} field you were using is for single attacks, {{rolldmg1}} is the field you want for roll 0 damage in a multi-attack. It doesn't seem like you can name attacks 1 to 6. They're designed to be extra attacks from your main weapon, with extra weapons listed as their own entry on the sheet (and hence output to their own templates with their own headings). Attacks 7 - 9 can be named, they're the Additional Attack fields from the character sheet. You could enter your Shield attacks as a separate template in the macro, this would group them together under a Shield roll.
Thanks, the "It doesn't seem like you can name attacks 1 to 6" was my Problem! I wanted to roll the attacks in the right order (MH1 OH1 Haste MH2 OH2 MH3) but it seems this is not possible with this template