import org.jibble.pircbot.*;

public class BotMain {

	public static void main(String[] args) throws Exception {

		// Now start our bot up.
		Bot bot = new Bot();

		// Enable debugging output.
		bot.setVerbose(true);

		// Connect to the IRC server.
		bot.connect("irc.uwcs.co.uk");

		// Join the #pircbot channel.
		bot.joinChannel("#SaveThePlanet");

	}

}
