12345678910111213141516171819202122232425262728293031323334353637 |
- {
- // eg. nedb://[directory-path]
- // nedb://memory
- // mongodb://[username:password@]host[:port][/db-name]
- "database_uri": "nedb://db",
- // the id of the discord server you'll be playing on! (you can get
- // this using 'Developer Mode' and using 'Copy ID' in the server's
- // right-click menu.)
- "discord_server_id": "PUT_YOUR_SERVER_ID_HERE",
- // ids of discord servers used solely to store emojis. you'll need at least
- // one of these. note that all existing emojis on the server will be deleted.
- "discord_emote_store_server_ids": [
- "PUT_YOUR_EMOJI_SERVER_ID_HERE"
- ],
- // fill this with as many bot tokens as you like.
- // see https://discordapp.com/developers/applications/
- //
- // you'll need to add these to the server - the program will prompt
- // you to do this when it runs :)
- "discord_bot_tokens": [
- "PUT_YOUR_BOT_TOKEN_HERE"
- ],
- // All role or channel IDs *not* put here will be deleted!
- "protected_ids": [
- // Put at least one ID here (eg. of your #general channel) to show your
- // understanding. The game will not start otherwise.
- ],
- // You can disable this deleting behaviour (eg. to find IDs of roles you want
- // to keep) by setting the following to true.
- "skip_cleanup": false
- }
|