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

Macro that calculates highest of two rolls of multiple dice

I set up an attack macro which include damage from the Savage Attacker feat, but unfortunately I initially misunderstood the feat. I thought it was the best of your rolls: so, for example, if I rolled three dice for damage, you rolled six and took the best three dice rolls. My macro reflected that: 6d8kh3 However, it's actually: roll the three dice, then roll the three dice again. Take the highest sequence. So if I roll: 6 + 8 + 1 + 4 + 5 + 3 I use the 6 + 8 + 1. How do I include that in a macro? Thanks in advance, P
You can use the following {3d8,3d8}k1
Thanks!