bot improved

master
Philippe Pittoli 2012-08-24 04:24:35 +02:00
parent 8f9405e245
commit f51ed5b2fc
1 changed files with 26 additions and 1 deletions

View File

@ -6,6 +6,8 @@ use AnyEvent::IRC::Client;
my $c = AnyEvent->condvar;
my $cl = AnyEvent::IRC::Client->new;
my $timer;
$cl->reg_cb (connect => sub {
my ($con, $err) = @_;
if (defined $err) {
@ -13,8 +15,31 @@ $cl->reg_cb (connect => sub {
return;
}
});
$cl->reg_cb (registered => sub { say "I'm in!"; });
$cl->reg_cb (disconnect => sub { say "I'm out!"; $c->broadcast });
$cl->reg_cb (
sent => sub {
my ($con) = @_;
if ($_[2] eq 'PRIVMSG') {
print "Sent message!\n";
$timer = AnyEvent->timer (
after => 1,
cb => sub {
undef $timer;
say "on est dans cb";
$con->disconnect ('done')
}
);
}
}
);
$cl->connect ('irc.geeknode.org', 6667, { nick => '[bot]kanette' });
$cl->send_srv ( PRIVMSG => 'karchnu', 'Hi there!');
$cl->send_srv ( PRIVMSG => 'karchnu', 'Bot enabled : woot');
$c->wait;
$cl->disconnect;