Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Net::IRC "on kick(ed)"

by LTjake (Prior)
on Aug 14, 2002 at 14:44 UTC ( [id://190092]=note: print w/replies, xml ) Need Help??


in reply to Net::IRC "on kick(ed)"

I've never used the module, but a quick look into Net::IRC::Event shows that kick is the event that would be called:
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.
Thus, your code should look something like:
$conn->add_global_hander('kick', \&on_kick); sub on_kick { my ($self, $event) = @_; my $who = $event->nick; # $who is the person who was kicked. }
Update:

Note: you can use Data::Dumper to see what the event structure looks like:
use Data::Dumper; # ... sub on_kick { my ($self, $event) = @_; print Dumper($event); }
HTH.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://190092]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2025-06-17 02:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.