Help for this page

Select Code to Download


  1. or download this
    sub reload_module {
        undefSub("on_public");
    ...
        delete $INC{"contrib.pl"};
        require "contrib.pl";
    }
    
  2. or download this
    POE::Session->new
        ( _start => \&bot_start,
    ...
            irc_notice => \&on_notice,
            irc_msg    => \&on_msg,
        );
    
  3. or download this
    $_[KERNEL]->post( $irc{server} => privmsg => $irc{chan}, "\0037 this i
    +s the standard test!");