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

Combine Reroll 1's once and if you still get a 1 that 1 is a 2.

I have a character who will have both Flames of Phlegethos and Elemental Adept as I intend to use the spell Green Flame Blade a lot. FoP allows me to reroll any 1's when rolling damage for a fire spell and keep the result of the second roll. EA states that if I get any 1's when I cast a spell of my chosen element, they are 2's instead. Below is my simple macro for Hellish Rebuke; I just want to know what I add to the damage roll to add Elemental Adept. &{template:default} {{name=Hellish Rebuke}} {{Save=DC [[@{Character Name|spell_save_dc}]] vs Dex for half damage}}{{Damage=[[1d10ro+?{Spell Level|1}d10ro]] fire}} Thank you for any assistance.
You could do something like this: [[{1d10ro1,{2}}k1]] 1d10ro1 rerolls the first one, while {x,{2}}k1 will keep the highest 1 out of "x" and "2" (so 1 becomes 2, any other number returns as normal). The {} around 2 is necessary because of  how grouped rolls work .
I tried [[{20d2ro,{2}}k1]] and if it worked how i needed it to, it should have been 40; unfortunately the result was 35.
This is infuriatingly close.... [[{20d2ro}<1]] if I could get it to show the total of all the dice rolled....then add the number of successes...that would be what I was looking for....
The 20d2 isn't working because you're comparing the total to 2, not each individual die.You could increase the number of dice with: [[{1d2ro,{2}}k1 + {1d2ro,{2}}k1 + {1d2ro,{2}}k1 + {1d2ro,{2}}k1 ......]]  I don't know off-hand if there's a way to say, "run this inline roll X times" where X can be controlled by input, but someone else more experienced may know.
I tried this and you're right it does work.... [[{1d3ro,{2}}k1+ {1d3ro,{2}}k1+ {1d3ro,{2}}k1+ {1d3ro,{2}}k1+ {1d3ro,{2}}k1]] I don't understand the {2} though....OH keep the highest out of X and 2.....so if it's one it replaces it with 2; I get it...terrible to read the result scrolling over but it does work.  Thank you.