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

roll two skills

I need a macro to roll two skills at once.  I need it to roll both r1 and r2 rolls.  I thought I had it but it keeps posting to chat the macro language rather than the roll results.  any takers?
Show your macro, and I can take a look at it. I assume you're using the D&D 5e by roll20 2014 sheet? 
<a href="https://wiki.roll20.net/Macro" rel="nofollow">https://wiki.roll20.net/Macro</a> &nbsp;this might be helpful
Sorry took so long to reply.&nbsp; Started a new job and it has been a bit. &amp;{template:default} {{name=Stealth &amp; Investigation Rolls}} {{Stealth=[[1d20 + @{selected|stealth_bonus}]]}} {{Investigation=[[1d20 + @{selected|investigation_bonus}]]}}
Ah, I see your problem, the parser ends the macro on encountering a line break if it's not within an element, so it sees all four lines as individual lines, not as part of the same template. What you need to do is to instead write it as &amp;{template:default} {{name=Stealth &amp; Investigation Rolls }} {{Stealth=[[1d20 + @{selected|stealth_bonus}]] }} {{Investigation=[[1d20 + @{selected|investigation_bonus}]] }} Or as just single line. The line break just before the closing braces is "empty", so it doesn't change the appearance of the output template, but because it is contained within the double braces, the parser keeps reading past it.
Thanks!