ROLZ

How to Roll

Rolling in Dice Rooms
You can roll in dice rooms by entering the rolling prefix # (or -) followed by the dice code.
Separate multiple roll steps with a semicolon:
A second # starts a comment. It does not start another roll step.
You can embed dice codes in normal chat text with square brackets. The following line rolls a d20 attack and then d12+10 damage:
  • axe attack [d20 18-20=x2] damage [d12+10]
Rolling in Wiki Pages
To roll inside a wiki page, enclose the dice code in square brackets and prefix it with the word "roll". For example, including the following code will trigger 4d6 to get rolled:
  • [roll 4d6]
Using colors in dice rolls
To give your die result a color, add the c=COLOR attribute to the roll. Replace COLOR with one of the valid color names; for example:
Use the equals sign with no spaces around it. The word COLOR is only a placeholder, not a literal value.
Valid color names are: red, green, blue, gray, maroon, olive, orange, purple, teal, pink.
Using expressions in rolls
Anywhere you can write a dice code, you can also use math, comparisons, and functions. Expressions can be nested; for example a function argument can contain another function or a dice roll.
  • Embedded in a sentence: attack [d20+5] damage [if(d20>=10,d8+2,0)]
Only the selected if() branch is rolled. For example, rolls only the d6 branch.