Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 700fc72be7759403673f112825257764 > files > 53

perl-Bot-BasicBot-Pluggable-0.980.0-4.mga4.noarch.rpm

#!/usr/bin/perl

# A standard Bot::BasicBot::Pluggable interface. You can /query the bot to
# load in more modules, I suggest Auth is a good start, so other people
# can't load modules, and CHANGE THE ADMIN PASSWORD.

# See perldoc Bot::BasicBot::Pluggable::Auth for details of this.

use warnings;
use strict;
use Bot::BasicBot::Pluggable;

my $bot = Bot::BasicBot::Pluggable->new( channels => [ ],
                                         server => "london.rhizomatic.net",
                                         nick => "jerabot",
                                         );
                                         
print "Loading Loader\n";
print $bot->load("Loader");

print "\n";

$bot->run();