-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-config.js
28 lines (22 loc) · 1011 Bytes
/
example-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
/*jslint node: true */
var config = {};
config.admin = {};
config.bot = {};
config.idlerpg = {};
config.idlerpg.nickname = 'multirpg';
config.idlerpg.channel = '#multirpg';
config.admin.nick = 'some-nick'; // Adminbot nickname
config.admin.user = 'some-identd'; // Adminbot identd
config.admin.server = 'irc.gamesurge.net'; //irc server
config.admin.channel = '#myadminchannel'; //Admin channel to monitor things.
config.admin.realname = 'MultiRPG NodeJSBot'; //adminbot Realname
config.admin.password = 'somepassword'; //irc server password
config.admin.port = 6667; //irc server port
config.bot.nick = 'botnick'; //bot Nickname
config.bot.user = 'botidentd'; // bot identd
config.bot.align = 'priest'; //align
config.bot.server = 'irc.gamesurge.net'; //irc server
config.bot.realname = 'MultiRPG NodeJSBot'; //bot realname also used for char class
config.bot.password = 'somepassword'; // irc server password also used for bot password
config.bot.port = 6667; //irc server port
module.exports = config;