jimi_hendrix has asked for the wisdom of the Perl Monks concerning the following question:
ok so i am making an ircbot in perl heres the code
but it will not connect to freenode yes i realize bot is a generic name but i will change it after i fix this#!/usr/bin/perl ################### # A basic irc bot # ################### use Bot::BasicBot; $bot = Bot::BasicBot->new( server => "irc.freenode.net", port => "6667", channels=> ["#perl"], nick => "bot", alt_nicks=> ["bot"], username => "bot", name => "bot", ignore_list => [], charset => "utf-8"); $bot->run();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: IRC bot with Bot::BasicBot not working
by moritz (Cardinal) on Feb 07, 2009 at 16:23 UTC | |
|
Re: IRC bot with Bot::BasicBot not working
by slacker (Friar) on Feb 07, 2009 at 17:12 UTC | |
by jimi_hendrix (Initiate) on Feb 07, 2009 at 17:18 UTC | |
|
Re: IRC bot with Bot::BasicBot not working
by Anonymous Monk on Feb 07, 2009 at 16:04 UTC | |
by jimi_hendrix (Initiate) on Feb 07, 2009 at 16:49 UTC | |
by Anonymous Monk on Feb 07, 2009 at 18:42 UTC | |
by jimi_hendrix (Initiate) on Feb 07, 2009 at 18:56 UTC | |
|
Re: IRC bot with Bot::BasicBot not working
by slacker (Friar) on Feb 08, 2009 at 00:59 UTC | |
|
Re: IRC bot with Bot::BasicBot not working
by neilwatson (Priest) on Jun 24, 2015 at 15:38 UTC |