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.

23 lines
666 B

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 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. },
  19. // optional features
  20. commands: true
  21. });