Bot::BasicBot::Pluggable is a Perl extension to the simple IRC bot base class allowing for pluggable modules.
SYNOPSIS
Creating the bot module
# with all defaults
my $bot = Bot::BasicBot->new();
# with useful options
my $bot = Bot::BasicBot::Pluggable->new( channels => ["#bottest"],
server => "irc.example.com",
port => "6667",
nick => "pluggabot",
altnicks => ["pbot", "pluggable"],
username => "bot",
name => "Yet Another Pluggable Bot",
ignore_list => [qw(hitherto blech muttley)],
);
(You can pass any option that's valid for Bot::BasicBot)
Product's homepage
Requirements:
· Perl