mr2 has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use Net::IRC; use strict; my $server = "myserver"; my $irc = new Net::IRC; my $conn1 = $irc->newconn(Nick => "test1", Server => $server, Port => 6667); my $conn2 = $irc->newconn(Nick => "test2", Server => $server, Port => 6667); $conn1->add_global_handler('msg', \&on_msg); $conn2->add_global_handler('msg', \&on_msg); $irc->start; sub on_msg { my ($self, $event) = @_; my $who = $event->nick; $self->privmsg($who, "hello, $who!!"); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::IRC "on kick(ed)"
by LTjake (Prior) on Aug 14, 2002 at 14:44 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |