in reply to Net::IRC "on kick(ed)"
Thus, your code should look something like:kick The "kick" event is triggered upon receipt of a KICK message, which me +ans that someone on a channel with the client (or possibly the client + itself!) has been forcibly ejected.
Update:$conn->add_global_hander('kick', \&on_kick); sub on_kick { my ($self, $event) = @_; my $who = $event->nick; # $who is the person who was kicked. }
HTH.use Data::Dumper; # ... sub on_kick { my ($self, $event) = @_; print Dumper($event); }
|
---|