config.example.json 1.2 KB

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