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.
24 lines
666 B
24 lines
666 B
var loyaltybot = require('./../lib/initialize.js');
|
|
|
|
loyaltybot.initialize({
|
|
// twitch info
|
|
twitch : {
|
|
channel : 'loyalty',
|
|
bot : {name: 'LoyaltyBot', password: 'loyalty!loyalty!loyalty!'},
|
|
subscribers : 'https://spreadsheets.google.com/feeds/list/****/od6/public/basic?alt=json'
|
|
},
|
|
|
|
// currency info
|
|
currency : {
|
|
name : 'Points',
|
|
payrate : 15,
|
|
host : '127.0.0.1',
|
|
user : 'mysql_user',
|
|
password : 'mysql_password',
|
|
database : 'mysql_database',
|
|
website : 'http://www.loyaltypoints.com'
|
|
},
|
|
|
|
// optional features
|
|
commands: true
|
|
});
|