were you all aware that you can code your rolls in the IC die roller to account for exploding AD (by typing 1d6.extra(6)? If you do please excuse me I'm pleased that I just found this out after all the time using it. I actually registered on the site today after noticing the gaps in my rolls yesterday and now today, maybe it's b/c I was just rolling anonymous all this time. So I was spending a little time reading and paying attn to what you can do with the roller b/c it's a little frustrating that it looks like I'm rolling and then taking the roll I like.
Thanks for pointing it out. Try using .open() instead of .extra(). It is a better option for action dice.
If you use:
1d6.extra(6)
it will add 1 extra d6 to the total if you roll a 6 or greater on the initial roll. However, if the second roll is also a 6, it won't add a third die, it only ever rolls one extra die.
Example: 1d6.extra(6) → [[6, 6]] = (12)
If you use:
1d6.open(6)
it will add 1 extra d6 to the total if you roll a 6 or greater on the initial roll AND it will continue to add extra dice so long as you keep rolling a 6 or greater.
Example: 1d6.open(6) → [[6, 6, 6, 4]] = (22)