Login

Dice Math

Syntax
A+B A-BArbitrary chains of addition and subtraction.
A*B A/BArbitrary chains of multiplication and division.
A++B A--BArbitrary chains of per-die addition and subtraction. Each value modifies each individual die roll. 4d6--2 rolls 4d6 with 2 subtracted from each.
(E)Parenthetic expressions
A<<BCounts the quantity of values in A that are lower than or equal to the value B. 10d6 << 3 counts the number of dice at 3 or below.
A>>BCounts the quantity of values in A that are greater than or equal to the value B. 10d6 >>4 counts the number of dice at 4 or above.
A<B A>=BEquality comparison on A and B. Must be the last operator ((1 < 2) * 5 is invalid, 1 < (2 * 5) is valid). Supported operators: < <= > >= =
X#AEvaluates the expression A X times. Use for stat generation: 6#4d6d1