-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
33 lines (31 loc) · 1.14 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
'use strict'
let config = {
irc: {
nickname: 'luminode',
username: 'Lumino',
realname: 'Lumino Display',
nickservPass: 'dummrumleuchte',
host: 'chat.freenode.com',
port: 6697,
ssl: true,
acceptInvalidSSL: true,
commandPrefix: '.lumino',
leaveMessage: ['Bye bye!', 'Have a nice day :)', 'Why would you kick me? :('], // This may be either an array or a string. If it's an array, a random value will be selected every time the bot leaves a channel.
joinMessage: ['Hi!', 'Thanks for the invite :)', 'What\'s up?'], // Same as for leaveMessage
whitelist: ['#bytewerk', '#platztest', '#platzworld'] // If the array is empty or undefined, the whitelist is disabled
},
lumino: {
host: 'ledschild.bingo',
port: 12345,
priority: '0xffffff',
width: 160,
height: 24,
duration: 10000 // The duration a message will be displayed in milliseconds
},
show: {
/*
* channel: true|false // Whether every message should be displayed in that channel or not
*/
}
}
module.exports = exports = config