#!/usr/bin/perl -w # LiMuBai Bot # Written by Ben Reser < ben@reser.org> # Adapted from test.pl by dennis taylor use strict; use POE::Kernel; use POE::Session; use POE::Component::IRC; use LiMuBai::Events; # here's where execution starts. # Change this '0' to '1' for lots of debugging information. POE::Component::IRC->new( 'limubai' ) or die "Can't instantiate new IRC component!\n"; POE::Session->new( 'main' => [@LiMuBai::Events::EXPORT] ); $poe_kernel->run(); exit 0;