dReKurCe has asked for the wisdom of the Perl Monks concerning the following question:
Can't call method "post" on an undefined value at POEirc line 14. POE::Kernel's run() method was never called.
use POE::Component::IRC; my ($irc)=POE::Component::IRC->spawn()or die; $irc->yield ('register' => 'all'); $irc->yield('connect', { Nick => 'n3u7bot', Server => 'irc.2600.net', Port => 6667, Username => 'HAL', Ircname => 'darkphiber', } ); $kernal->post( 'my client ', 'join', '#2600tn' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using POE::Component::IRC
by johnnywang (Priest) on Jul 03, 2005 at 22:00 UTC | |
|
Re: Using POE::Component::IRC
by bart (Canon) on Jul 03, 2005 at 20:30 UTC | |
|
Re: Using POE::Component::IRC
by Anonymous Monk on Jul 04, 2005 at 01:06 UTC | |
by rcaputo (Chaplain) on Jul 04, 2005 at 07:26 UTC | |
by bingos (Vicar) on Jul 04, 2005 at 08:05 UTC | |
by polettix (Vicar) on Jul 04, 2005 at 11:18 UTC |