Instead of only the nick, is there a way I could capture one's host in Net::IRC::Event? If I'm on irc as ircuser!irc@user.irc.org, I can capture ircuser with:
our ($conn, $event) = @_; our $nick = $event->{nick};
I'd essentially want to do the following instead:
our ($conn, $event) = @_; our $nick = $event->{host};
..in order to get back user.irc.org.
- Oeln