Zeevnor has asked for the wisdom of the Perl Monks concerning the following question:
When I try to run this, I get the following error:use Net::AIM; my $nick = 'xx'; $aim = new Net::AIM; $aim->newconn( Screename => 'xx', Password => 'xx' ) or die "Cannot connect to AIM Server!"; $aim->getconn->add_handler('config', \&init); $aim->start; sub init { my ($self, $event) = @_; my ($str) = $event->args; $self->setconfig($str); $self->send_im($nick, "Are you there, good sir?"); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::AIM Sorrows
by The Mad Hatter (Priest) on May 24, 2003 at 05:29 UTC | |
by porkpilot (Deacon) on May 24, 2003 at 09:03 UTC | |
|
Re: Net::AIM Sorrows
by theorbtwo (Prior) on May 24, 2003 at 06:35 UTC |