bot.pl


#!/usr/local/bin/perl
use strict;
use warnings;
use Bot::BasicBot::Pluggable;

my $bot = Bot::BasicBot::Pluggable->new(
 
                    channels => ["#wikinews-spam"],
                    server   => "irc.gnu.org",
                    port     => "6667",
 
                    nick     => "gpy_",
                    altnicks => ["g1y_", "g2y_"],
                    username => "bot",
                    name     => "Wikinews queue updates & wikilinker bot",
 
              );

#$bot->load('WikinewsSpam');
$bot->load('WikiLinker');
$bot->run();

#_ _END_ _