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

Two d20 Rolls in a Macro won't Show

The current game I'm in has us roll two d20s on attack using the macros from the character sheet (the ones you drag and drop). It's setup by him for easier advantage and disadvantage rolls. It's been working great. I keep missing my Bless rolls. So I've been working on a macro for that. Except I can't roll two d20s for some reason. Here's a cut down version of my macro: &{template:atkdmg}{{rname=Basic Attack}}{{r1=[[1d20]]}}{{r2=[[1d20]]}}{{normal=1}}{{attack=1}}{{damage=1}}{{dmg1flag=1}} It won't display the second d20. I'm stuck. We're in 5e if that makes any difference.
Ok, so I found the wiki. Still having issues. My code is now: &{template:atkdmg}{{rname=Talon}}{{r1=[[1d20]]}} {{r2=[[1d20]]}}{{always=1}}{{normal=1}}{{attack=1}}{{damage=1}}{{dmg1flag=1}} However it now displace r1 below both r1 and r2 rolls....
<a href="https://wiki.roll20.net/D%26D_5E_by_Roll20/Roll_Templates#Attack_.26_Damage" rel="nofollow">https://wiki.roll20.net/D%26D_5E_by_Roll20/Roll_Templates#Attack_.26_Damage</a> In order for the r1 or r2 sections to be output, the normal | always | advantage | disadvantage field must be included. Change 'normal' to 'always' or 'advantage' or 'disadvantage': &amp;{template:atkdmg}{{rname=Basic Attack}}{{r1=[[1d20]]}}{{r2=[[1d20]]}}{{ always =1}}{{attack=1}}{{damage=1}}{{dmg1flag=1}}
For some reason this worked: &amp;{template:atk} {{rname=Talon}} {{rnamec=rnamec}} {{r1=[[1d20]]}} {{always=1}} {{r2=[[1d20]]}}
Jarren I didn't see your reply, I kept working at it thank you, your response makes alot of sense
june_yah said: Ok, so I found the wiki. Still having issues. My code is now: &amp;{template:atkdmg}{{rname=Talon}}{{r1=[[1d20]]}} {{r2=[[1d20]]}}{{always=1}}{{normal=1}}{{attack=1}}{{damage=1}}{{dmg1flag=1}} However it now displace r1 below both r1 and r2 rolls.... You have both&nbsp;{{always=1}} and {{normal=1}}. Use only one or the other: &amp;{template:atkdmg}{{rname=Talon}}{{r1=[[1d20]]}} {{r2=[[1d20]]}}{{always=1}}{{attack=1}}{{damage=1}}{{dmg1flag=1}}
Jarren, I got it fixed! Thank you for the help!