- or download this
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.
- or download this
$conn->add_global_hander('kick', \&on_kick);
...
my $who = $event->nick;
# $who is the person who was kicked.
}
- or download this
use Data::Dumper;
...
my ($self, $event) = @_;
print Dumper($event);
}