AnyDice Classic Retired

progress cannot be stopped

Sat, 05 Jun 2010 15:06:00 +0000

The old AnyDice has served well, but now it is time for it to retire. All links to the old site are from now on forwarded to the new AnyDice.

Though no longer maintained, the old interpreter can still be accessed through the new interface. So if you want to, you can continue to use the old AnyDice syntax. You do so using the legacy command:

output legacy "4d6h3"

That will invoke the old interpreter with the input string 4d6h3.

The new way

To get the highest three dice out of 4d6 using the new syntax, you need to write this:

output {1..3} @ 4d6

Alternatively, you can use a predefined function, which is slower but more legible:

output [highest 3 of 4d6]

comments are closed