added utf8 decoding of wikilinker urls
[gpy.git] / bot.pl
bloba7d6fb8d703619ef41db260c784af51f29428d72
1 #!/usr/local/bin/perl
2 use strict;
3 use warnings;
4 use Bot::BasicBot::Pluggable;
6 my $bot = Bot::BasicBot::Pluggable->new(
8 channels => ["#wikinews-spam"],
9 server => "irc.gnu.org",
10 port => "6667",
12 nick => "wnbot",
13 altnicks => ["pbot", "pluggable"],
14 username => "bot",
15 name => "bot http://repo.or.cz/w/gpy.git",
19 $bot->load('WikiLinker');
20 $bot->run();
22 #_ _END_ _