2020-06-12 17:29:35 -04:00
|
|
|
alias Omnibot.Config
|
|
|
|
|
|
|
|
|
|
config = %Config {
|
|
|
|
|
nick: "omnibot_testing",
|
|
|
|
|
server: "irc.bonerjamz.us",
|
|
|
|
|
port: 6667,
|
|
|
|
|
ssl: false,
|
|
|
|
|
|
2020-07-06 18:13:37 -07:00
|
|
|
plugins: [
|
|
|
|
|
{Omnibot.Contrib.OnConnect, commands: [
|
|
|
|
|
["privmsg", "nickserv", "register", "password123", "omnibot@omni.bot"],
|
|
|
|
|
["privmsg", "nickserv", "identify", "password123"]
|
|
|
|
|
]},
|
2020-06-13 21:01:23 -04:00
|
|
|
{Omnibot.Contrib.Linkbot, channels: :all},
|
2020-07-02 17:26:14 -07:00
|
|
|
{Omnibot.Contrib.Fortune, channels: :all},
|
2020-07-16 17:54:34 -07:00
|
|
|
{Omnibot.Contrib.Wordbot, channels: ["#idleville"], ignore: ["username"]},
|
2020-06-12 17:29:35 -04:00
|
|
|
],
|
|
|
|
|
|
2020-06-12 18:25:42 -04:00
|
|
|
#module_paths: [{"modules", recurse: true}]
|
2020-06-12 17:29:35 -04:00
|
|
|
}
|