https://discord.com/api/oauth2/authorize?client_id=551378788286464000&scope=bot
- roll syntax is
roll <dice> <modifier> <repeats>
<dice>
is the number and size of the dice to roll, e.g.2d6
,1d20
<modifier>
is what to add at the end of the roll, e.g.+5
,-5
<repeats>
is how many times to repeat the roll, e.g.x2
for advantage, orx3
for rolling three attacks at once
roll 1d20 +6
orroll 6
rolls a skill check with a +6 modifierroll 2d6 +5 x3
or2d6 5 x3
rolls greatsword damage with a +5 modifier three timesroll 1d20 1d4 -3 x2
ord20 d4 -3 x
rolls a stealth check with a -3 modifier, guidance, and disadvantage
- plus signs can be omitted
- e.g.
roll 1d20 +6 x2
is the same asroll 1d20 6 x2
- e.g.
- if
<dice>
doesn't specify a count, it defaults to1
- e.g.
roll 1d20 6 x2
is the same asroll d20 6 x2
- e.g.
- if
<dice>
is omitted entirely, it defaults to1d20
- e.g.
roll d20 6 x2
is the same asroll 6 x2
- e.g.
roll
can be omitted entirely if at least two parameters are provided- e.g.
roll 6 x2
is the same as6 x2
- e.g.
- if
<repeats>
doesn't specify a count, it defaults to2
- e.g.
6 x2
is the same as6 x
- e.g.