Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: How do I shut down a Bot::BasicBot?

by repellent (Priest)
on Jul 16, 2010 at 03:52 UTC ( [id://849906]=note: print w/replies, xml ) Need Help??


in reply to How do I shut down a Bot::BasicBot?

Did you read about shutdown? Since Bot::BasicBot uses POE::Component::IRC, you may want to look at its SIGNALS section of the documentation. Perhaps something like:
$poe_kernel->signal($poe_kernel, 'POCOIRC_SHUTDOWN');

Replies are listed 'Best First'.
Re^2: How do I shut down a Bot::BasicBot?
by myuserid7 (Scribe) on Jul 16, 2010 at 07:57 UTC
    I tried that, and POE::Component::IRC::Cookbook::Disconnecting as well. Bot::BasicBot's documentation under Other Methods says I can call these methods but I'm still not sure how to do it correctly. This is what I tried
    #!/usr/bin/perl use POE; use warnings; use strict; my $bot = Perlbot->new (server => 'swiftco.dal.net', channels => ['#ra +ndomtestingchannel']); $SIG{'INT'} = 'Handler'; $SIG{'TERM'} = 'Handler'; sub Handler { $poe_kernel->signal($poe_kernel,'POCOIRC_SHUTDOWN'); }; $bot->run; package Perlbot; use base qw(Bot::BasicBot);
    It still stays there after disconnecting and then reconnects back to IRC.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-24 19:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found