Map bots = getIMBotsFromExtensionRegistry();
for (Iterator it = bots.values().iterator(); it.hasNext();) {
IIMBotEntry entry = (IIMBotEntry) it.next();
// Create default im bot
IMBot bot = new IMBot(entry);
// connect
bot.connect();
}
while (true) {
try {
Thread.sleep(100);