User guide All lessons Cookbook Function reference Open playground

Pool success counts

At the table

Pool games often ask: how many dice succeeded, or did any die show a particular face? Indie designs like The Pool use “any natural 1”; other rules want “at least two 8+ on 5d10.”

Try it

Copy the script into the playground editor and click Run.

The script

output("how_many_high", 3d6.count(5..))
output("any_one", dice_pool(2, 6).p_any(1))

Related helpers on pools:

Use the same face spec as keep / count: int, [faces], or ranges like 5...

Reading the result

how_many_high is a full DieRoll table. any_one prints one probability (like lesson 4’s p_ge).

Try this

how_many_high · DieRoll · mean 1.000

outcome%fracX/27
029.68/278
144.44/912
222.22/96
33.701/271

any_one · Prob

outcome%fracX/27
any_one30.611/368