Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. 'use strict';
  2.  
  3. Object.defineProperty(exports, "__esModule", {
  4. value: true
  5. });
  6. /**
  7. * Configuration file for SubNotifier. Please follow strict guidelines (see README)
  8. * Variables:
  9. * {{username}} - The username of the person who subscribed/cheered
  10. * {{months}} - Amount of months username has resubscribed for (ONLY resubscriptions!)
  11. * {{years}} - If resubbed more than one year, will display '[ X year(s) and X month(s)]'
  12. * {{bits}} - Amount of bits cheered (ONLY bits!)
  13. * {{message}} - Message sent with the alert
  14. * @type {Object}
  15. */
  16. var Config = {
  17. clientId: '3kkg78o33drqgc9f4rvsdfetzgvuic',
  18. username: 'proxumus',
  19. token: 'oauth:o4h0ya3xp44cvmt1iev2vqhftrre2w',
  20. channels: ['#pelletlsu'],
  21. enableDebug: false,
  22. enableSecureMode: true,
  23. enableMeMode: true,
  24. enableSubAlerts: true,
  25. enableGiftSubAlerts: false,
  26. enableResubAlerts: true,
  27. enableBitAlerts: false,
  28. enableCustomMessages: true,
  29. customMessages: {
  30. '#pelletlsu': {
  31. subscriptions: {
  32. custom1: 'Welcome to the Banger Squad {{username}}! pelletBanger' },
  33. giftsubscriptions: {
  34. custom1: 'PogChamp GIFTED SUB Thank you for gifting {{recipient}} a subscription, {{username}}' },
  35. resubscriptions: {
  36. custom1: '{{username}} has been bangin for {{months}} months! pelletBanger {{years}}' },
  37. bits: {
  38. custom1: 'Wowzers, {{username}} cheered {{bits}} BITS!' }
  39. }
  40. }
  41. };
  42.  
  43. exports.Config = Config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement