21 lines
532 B
Elixir
21 lines
532 B
Elixir
alias Omnibot.Config
|
|
|
|
config = %Config {
|
|
nick: "omnibot_testing",
|
|
server: "irc.bonerjamz.us",
|
|
port: 6667,
|
|
ssl: false,
|
|
|
|
plugins: [
|
|
{Omnibot.Contrib.OnConnect, commands: [
|
|
["privmsg", "nickserv", "register", "password123", "omnibot@omni.bot"],
|
|
["privmsg", "nickserv", "identify", "password123"]
|
|
]},
|
|
{Omnibot.Contrib.Linkbot, channels: :all},
|
|
{Omnibot.Contrib.Fortune, channels: :all},
|
|
{Omnibot.Contrib.Wordbot, channels: ["#idleville"]},
|
|
],
|
|
|
|
#module_paths: [{"modules", recurse: true}]
|
|
}
|