package com.deaded.bot;


public class MyBotMain {
    
    public static void main(String[] args) throws Exception {
        
        // Now start our bot up.
        MyBot bot = new MyBot();
        
        // Enable debugging output.
        bot.setVerbose(true);
        
        // Connect to the IRC server.
        bot.connect("irc.quakenet.org");

        // Join the #pircbot channel.
        bot.joinChannel("#deaded-test");
        
    }
    
}