|
Bot::ICB - Provides a simple Net::IRC-like interface to ICB |
Bot::ICB - Provides a simple Net::IRC-like interface to ICB
use Bot::ICB;
my $bot = Bot::ICB->newconn();
my $on_connect = sub {
my $bot = shift;
$bot->sendcmd("g", "unga");
};
$bot->add_handler('connect', $on_connect);
$bot->login(user => 'dum'); $bot->start();
This module provides a simple Net::IRC-like interface to the ICB chat protocol.
Sorry for the lack of documentation. See eg/samplebot.pl for a
trivial example of usage.
Brian Moseley <bcm-nospam@maz.org
the Net::ICB manpage, the perl manpage.
|
Bot::ICB - Provides a simple Net::IRC-like interface to ICB |