Map bots = getBotsFromExtensionRegistry();
for (Iterator it = bots.values().iterator(); it.hasNext();) {
IChatRoomBotEntry entry = (IChatRoomBotEntry) it.next();
// Create default chat room bot
ChatRoomBot bot = new ChatRoomBot(entry);
// connect
bot.connect();
}
while (true) {
try {
Thread.sleep(100);