
I have 8 identical archers and when they fire I would like to determine number of successes versus their target and then roll the right number of damage dice. My understanding is that you can't reference the previous roll, so I will have to query the number of damage rolls to make. determining successes: /roll {8d20+4}>@{target|AC} How do I modify this so that the +4 is added to each die individually? determine damage: /roll ?{NumSuccess}d8+?{NumSuccess}*2 Is it correct there is no way to define NumSuccesses by the first roll? Thanks for your help!