Help for this page

Select Code to Download


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