Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. /* eslint-disable */
  2. var config = { // NOTE: DO NOT LEAVE ANYTHING BLANK
  3. // ALL settings are strings. Do NOT just use true or false, use these in strings such as 'true' or 'false'. This is due to how some code works when changing the settings
  4. ownerID: '478572042384572424', // Your ID here
  5. token: process.env.TOKEN, // Your bot token here
  6. status: 'online', // Bot status [online/idle/invisible/dnd]
  7. debug: 'false', // This is used to output some debug info if needed. The token will be in the console and other information could be in the console
  8. playingGame: '{{prefix}}help | {{guilds}} guilds | v{{version}}', // The game you want the bot to play. {{prefix}} is replaced with the default prefix below, {{guilds}} is replaced with the guild count and {{version}} is replaced with the bot version. Leave blank to disable
  9. purgeLogFormat: '\n Message ID: {{mID}} | Message Timestamp: {{mTS}} | Content: {{mC}} \n', // {{mID}}: Message ID; {{mTS}} Message Timestamp; {{mC}}: Message Content;
  10. eightBallResponses: ['Yes', 'No', 'Certainly', 'My sources say yes', 'Try again later', 'Without a doubt', 'Better not to tell you now'], // An array of responses for the 8ball command
  11. googleAPIToken: 'AI-241scsc', // Used for link shortener and music features. You need to have these APIs enabled.
  12. logTimeFormat: 'D MMM YYYY HH:mm:ss ZZ',
  13. musicEnabled: 'true',
  14. defaultSettings: {
  15. prefix: '.',
  16. modLogChannel: 'mod-log',
  17. modRole: 'Moderator',
  18. adminRole: 'Admin',
  19. welcomeChannel: 'general',
  20. welcomeMessage: 'Welcome {{user}}!',
  21. welcomeEnabled: 'false',
  22. inviteFilterEnabled: 'false',
  23. inviteWhitelist: ['discord-testers', 'discord-developers'], // This can be changed, these are just defaults as an example
  24. facepalms: 'false', // If enabled, the bot will reply with the facepalm emoji whenever a message contains 'facepalm'
  25. swearFilter: 'false',
  26. swearWords: ['fuck'], // An array of swear words. These should be lowercase. (of course, I have not included much for certain reasons...)
  27. logDeletes: 'true',
  28. logNewMember: 'true',
  29. logMemberLeave: 'true',
  30. logCommandUsage: 'true',
  31. logPurge: 'true',
  32. sendHelp: 'channel' // Available options: channel, dm
  33. },
  34. dashboard: {
  35. enabled: 'true', // This setting controls whether the dashboard is enabled or not.
  36. oauthSecret: process.env.SECRET, // The client secret from the Discord bot page
  37. secure: 'false', // HTTPS: 'true' for true, 'false' for false
  38. sessionSecret: process.env.SESSIONSECRET, // Go crazy on the keyboard here, this is used as a session secret
  39. domain: process.env.DOMAIN, // Domain name (with port if not running behind proxy running on port 80). Example: 'domain': 'dashboard.bot-website.com' OR 'domain': 'localhost:33445'
  40. port: '33445', // The port that it should run on
  41. invitePerm: '536079575',
  42. protectStats: 'false',
  43. borderedStats: 'false', // Controls whether stats in the dashboard should have a border or not
  44. legalTemplates: {
  45. contactEmail: 'support@website.com', // This email will be used in the legal page of the dashboard if someone needs to contact you for any reason regarding this page
  46. lastEdited: '18 November 2018' // Change this if you update the `TERMS.md` or `PRIVACY.md` files in `dashboard/public/`
  47. }
  48. }
  49. };
  50.  
  51. module.exports = config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement