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 Issues with showing damages

Hello everyone, I'm trying to create a macro for 1 attack only with damages shown, but I'm having some difficulties there. (I'm using a blade which deals 1d10+10 Slashing damages and 1d6 Frost damages and does crits starting at 18) Here's my code: &{template:pc} {{name=Lame elfique incurvée}} {{type=attackdamage}} {{showchar=[[1]]}} {{charname=Storval}} {{attack=[[1]]}} {{roll=[[1d20cs>18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] ]]}} {{critconfirm=[[1d20cs18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] ]]}} {{rolldmg1=[[1d10+10]]}} {{rolldmg1type=Slashing}} {{rolldmg1crit=[[((1d10+1d10))+20]]}} {{rolldmg2=[[1d6]]}} {{rolldmg2type=Frost}} But with this code, it only shows the attack roll, not the damage ones (see image below) ------ However, if I add a 2dn attack roll with this following code, it shows me the damage rolls of the first attack (and of course the 2nd attack roll - that I don't want) (image below): &{template:pc} {{name=Lame elfique incurvée}} {{type=attackdamage}} {{showchar=[[1]]}} {{charname=Storval}} {{attack=[[1]]}} {{roll=[[1d20cs>18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] ]]}} {{critconfirm=[[1d20cs18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] ]]}} {{rolldmg1=[[1d10+10]]}} {{rolldmg1type=Slashing}} {{rolldmg1crit=[[((1d10+1d10))+20]]}} {{rolldmg2=[[1d6]]}} {{rolldmg2type=Frost}} {{roll1=[[1d20cs>18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] -5]]}} --- I don't understand why it would behave like that. What am I not understanding ?
Having the same issue. @Sanghxa, I noticed that the npc template does not have this issue, so you can try using that if that works for you. Use "&{template:pc}"
1608116396
Oosh
Sheet Author
API Scripter
I vaguely remember seeing this issue before. According to the wiki, what you've got should work, but for whatever reason it doesn't seem to. If you use the {{dmg}} properties instead of the {{rolldmg}} properties, it should work (this part needs the two flags at the end or it won't display): {{dmg1=[[1d10+10]]}} {{dmg1type=Slashing}} {{dmg1crit=[[((1d10+1d10))+20]]}} {{dmg2=[[1d6]]}} {{dmg2type=Frost}} {{dmg1flag=1}} {{damage=1}}
Oh sorry, I hadn't seen your replies. Thanks guys, I'll go try both your advice and see if and how things work :D