My friend needed a dice roller for discord d&d.
He's a pretty great friend, so I made him one.
- Rolling an any-sided die an arbitrary number of times
- Combining multiple dice in one roll
- Rolling a CURSED die
- Advantage / Disadvantage
- Modifiers
- "Titling" a roll so you know what it was for.
Built for deployment on Cloudflare Workers
Followed this setup: https://discord.com/developers/docs/tutorials/hosting-on-cloudflare-workers
And copied things from this example repo: https://github.com/discord/cloudflare-sample-app
Will's Rollbot
==============
USAGE Performs rolls as defined by the input text.
PARAMS A string of space-separated arguments.
------- ------------------------------------------------------------------
ARGS cursed - A cursed roll. Will ignore 'd-rolls' if present.
#d# - A roll where the first # is the number of times and
the second # is the number of sides. Eg: 2d20
Will not work with in 'cursed-rolls'.
adv - Plays the given rolls a second time and takes the maximum.
dis - Plays the given rolls a second time and takes the minimum.
-# - A negative modifier. Eg: -3
+# - A positive modifier. Eg: +3
for:"x" - Give a title to the roll. Title must be in double quotes.
help - Shows this manual.
------- ------------------------------------------------------------------
NOTES The order of the arguments doesn't matter.
If multiple modifiers are present, only the first will be used.
Will return an error if both 'adv' and 'dis' are provided.
Modifiers can also be appended to d-rolls: 2d10+3
EXAMPLE /roll d20 -3
/roll 2d10 adv +4
/roll +10 cursed
/roll dis 2d27 -2 3d101
/roll 4d4+2 for:"Perception check" adv
- Run
registerfirst if there are new/edited command names. - Get a forwarding url with
npm run ngrok- IIRC there's some account setup involved if you've never used ngrok before?
- Run
npm run dev - Save the ngrok url into the Bot application's INTERACTIONS ENDPOINT URL (in Settings)
- Make your changes.
- When finished
npm run publishto deploy changes to Cloudflare. - Don't forget to change the Bot's INTERACTIONS ENDPOINT URL back to the workers URL.
Currently npm run register fails due to some esm/node import issues...
Kinda janky but, to workaround:
-
Add file extension
.jsto all local imports- import { randNum, logError } from '../lib/utils'; + import { randNum, logError } from '../lib/utils.js';
-
Import
Responseas a named import where it is used// JsonResponse.js + import { Response } from 'node-fetch' class JsonResponse extends Response { ... } -
Convert
lodashimports to destructure fns from a default import- import { get } from 'lodash' + import l from 'lodash' + const { get } = l;
