A Twitch.tv viewer reward and games system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.4 KiB

12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
  1. var loyaltybot = require('./../lib/initialize.js');
  2. loyaltybot.initialize({
  3. // twitch info
  4. twitch : {
  5. channel : 'loyalty',
  6. bot : {name: 'LoyaltyBot', password: 'loyalty!loyalty!loyalty!'},
  7. subscribers : 'https://spreadsheets.google.com/feeds/list/****/od6/public/basic?alt=json'
  8. },
  9. // currency info
  10. currency : {
  11. name : 'Points',
  12. payrate : 15,
  13. host : '127.0.0.1',
  14. user : 'mysql_user',
  15. password : 'mysql_password',
  16. database : 'mysql_database',
  17. website : 'http://www.loyaltypoints.com',
  18. modpowers: true, // NEW
  19. sub_ty_msg: 'SUBHYPE', // NEW
  20. },
  21. web: {
  22. port: 8000,
  23. slogan: 'WEBSITE SLOGAN HERE',
  24. logo: 'logo.jpg',
  25. twitter: 'example',
  26. chatlog: false,
  27. statdir: 'example',
  28. fanart: [
  29. {
  30. url: "https://imageurl.com/image.png",
  31. user: "Author",
  32. user_link: "http://authorurl.com"
  33. },
  34. {
  35. url: "https://imageurl.com/image.png",
  36. user: "Author",
  37. user_link: "http://authorurl.com"
  38. },
  39. ],
  40. },
  41. // optional features
  42. commands: true,
  43. exchanges: {'option_name':8001, 'gdollars':8002},
  44. ignorelist: ['jtv', 'bot_potato', 'moobot']
  45. });