For the complete documentation index, see llms.txt. This page is also available as Markdown.

Advanced Rolling

Less common rolling methods for specific systems or special cases.

D66

Roll two six-sided dice — common in Japanese systems for event or name tables.

D66 D66s D66n

For D66, s puts the lower digit first; n puts the higher digit first.

xBy — roll without totaling

5B10 — no sum; each die is listed separately even with multiple dice.

5B10S — same as above, sorted high to low.

5B10<>=x — also counts how many dice are greater/less than x.

5B10 x — same as above using a space instead of >= (greater than or equal).

5B10 5 — equivalent to 5B10>=5

5B10 D5 — equivalent to 5B10<=5

xUy z a

5U10 8 — roll 5d10; each die showing 8 grants one bonus die.

5U10 8 9 — as above, and count how many dice are greater than 9.

.int x y

Roll a random integer in a range.

.int 20 30 — roll 20–30.

Last updated