Advertisement
Guest User

Untitled

a guest
Sep 29th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. global.configuration = {
  2. DEBUG: true,
  3. modmailChannelWebhook: 'webhook url goes here',
  4. // States go here, colors are hex colors with # replaced with 0x
  5. modmailStates: [
  6. {
  7. 'state': 'mod',
  8. 'color': '0x46d160',
  9. 'subreddits': 'history'
  10. },{
  11. 'state': 'new',
  12. 'color': '0x0dd3bb',
  13. 'subreddits': 'history'
  14. },{
  15. 'state': 'highlighted',
  16. 'color': '0xffb000',
  17. 'subreddits': 'history'
  18. },{
  19. 'state': 'notifications',
  20. 'color': '0x24a0ed',
  21. 'subreddits': 'history'
  22. }
  23. ],
  24. redditConfig: {
  25. userAgent: '/u/FILLINYOURNAMEHERE discord modmail feed',
  26. oauth: {
  27. type: 'script',
  28. key: 'YOURKEY',
  29. secret: 'YOURSECRET',
  30. username: 'USERNAME',
  31. password: 'PASSWORD',
  32. // make sure to set all the scopes you need. We are lazy so we do ALLTHESCOPES
  33. scope: ['account', 'creddits', 'edit', 'flair', 'history', 'identity', 'livemanage', 'modconfig', 'modcontributors', 'modflair', 'modlog', 'modmail', 'modothers', 'modposts', 'modself', 'modwiki', 'mysubreddits', 'privatemessages', 'read', 'report', 'save', 'submit', 'subscribe', 'vote', 'wikiedit', 'wikiread']
  34. }
  35. }
  36. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement