xbot/xbot.cfg

37 lines
513 B
INI
Raw Normal View History

2015-03-24 03:12:35 -07:00
# xbot configuration file
bot:
{
2015-04-18 08:51:15 -07:00
verbose = 1;
2024-02-29 02:54:18 -08:00
nick = "xbot";
2015-03-24 03:12:35 -07:00
user = "xbot";
2024-03-09 01:57:13 -08:00
real = "xbot";
2024-03-05 18:12:10 -08:00
2024-03-07 22:38:00 -08:00
# owner of the bot (nick!user@host)
2024-03-11 03:22:05 -07:00
admin = "ab3800!*@*";
2024-03-07 22:38:00 -08:00
# database file name
2024-03-05 18:12:10 -08:00
db = "xbot.db";
2024-03-09 00:40:06 -08:00
# log file name
log = "xbot.log";
2015-03-24 03:12:35 -07:00
};
server:
{
2024-03-11 03:22:05 -07:00
host = "irc.newsrouters.ca";
port = "6697";
ssl = true;
ssl_verify = false;
2015-04-07 11:18:24 -07:00
};
mods:
{
2024-03-13 04:50:58 -07:00
autoload = ("lua", "autojoin", "hello", "uptime");
2015-04-07 11:18:24 -07:00
blacklist = ();
2015-04-08 11:56:32 -07:00
# config option for mods/autojoin.so
2024-03-11 03:22:05 -07:00
mod_autojoin = ("#Lobby", "#Bots");
2015-04-08 11:56:32 -07:00
};