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

Seeking help with summons attack macro crit output

Hello, I've been working on a way to roll a query of attacks against a query of ac and then tell me how many times I hit and then add this into a total damage macro. This was relatively easy to figure out. However, I could not find a way to also make it tell me how many times I crit among my attack rolls. I know I could just hover over it and count the green 20s, but I wanted to ask if there is a way to actually have it tell me in the same way that it tells me how many times I've hit. The attacks macro: {?{Number of Attacks|1}d20+3}>?{AC of Enemy|1} The damage macro (for good measure): &{template:atkdmg} {{rname=Zombie Damage}} {{damage=1}} {{dmg1flag=1}} {{dmg1=[[?{Number of Hits|1}d6 + ?{Number of Hits|1}[STR] + ?{Number of Crits|0}d6[Crits]]]}} {{dmg1type=Bludgeoning}} Thank you very much for your assistance!
1668535054
Gauss
Forum Champion
Question:  Is your intent to roll three attacks each are 1d20+3? If that is the case you need to move the +3 over to the AC side of the equation {?{Number of Attacks|1}d20}>[[?{AC of Enemy|1}-3]] Unfortunately, I don't have a solution for your crits, not with the kind of macro you are using. I will think about it but maybe someone will have a solution for you. It may involve a chat menu solution.
1668535626

Edited 1668535735
Gauss said: Question:  Is your intent to roll three attacks each are 1d20+3? If that is the case you need to move the +3 over to the AC side of the equation {?{Number of Attacks|1}d20}>[[?{AC of Enemy|1}-3]] Unfortunately, I don't have a solution for your crits, not with the kind of macro you are using. I will think about it but maybe someone will have a solution for you. It may involve a chat menu solution. No, the 3 is simply the attack modifier that a Zombie has. You can roll as many attacks with it as you want. The d20+3 works since the > variable forces each d20 to get a +3 to its roll.
1668535931
Gauss
Forum Champion
Sneak said: Gauss said: Question:  Is your intent to roll three attacks each are 1d20+3? If that is the case you need to move the +3 over to the AC side of the equation {?{Number of Attacks|1}d20}>[[?{AC of Enemy|1}-3]] Unfortunately, I don't have a solution for your crits, not with the kind of macro you are using. I will think about it but maybe someone will have a solution for you. It may involve a chat menu solution. No, the 3 is simply the attack modifier that a Zombie has. You can roll as many attacks with it as you want. The d20+3 works since the > variable forces each d20 to get a +3 to its roll. Ahh you are right, my bad... I might have been thinking of something else. That is what I get for responding right after I wake up. :)