Wordbot is a little more complex of a bot module and I've been working on it here. Other than wordbot module, a few minor tweaks have been added all around that don't really affect anything. Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
17 lines
355 B
Elixir
17 lines
355 B
Elixir
alias Omnibot.Config
|
|
|
|
config = %Config {
|
|
nick: "omnibot_testing",
|
|
server: "irc.bonerjamz.us",
|
|
port: 6667,
|
|
ssl: false,
|
|
|
|
modules: [
|
|
{Omnibot.Contrib.Linkbot, channels: :all},
|
|
{Omnibot.Contrib.Fortune, channels: ["#idleville"]},
|
|
{Omnibot.Contrib.Wordbot, channels: ["#idleville"]},
|
|
],
|
|
|
|
#module_paths: [{"modules", recurse: true}]
|
|
}
|