!747 !pcall { m { static S myName = "Echo Bot"; static int delay = 5000; p { while (true) { pcall { // make sure we stay runnning if connection fails or error for (ChatLine l : suckWebChat(myName)) { if (l.isBot) continue; sayInWebChat(myName, "Yeah right... " + l.text); } } sleep(delay); } } }