!747 !actionListener { !awt { m { static JList list; static int delay = 3000; p { JFrame frame = new JFrame("Bots List"); frame.setBounds(10, 10, 250, 400); list = new JList(); updateBotList(); frame.getContentPane().add(new JScrollPane(list)); frame.setVisible(true); installTimer(list, runnable { updateBotList(); }, delay); } static new MonoThread update; !include #1001434 // MonoThread static void updateBotList() { update.run(runnable { new L bots; for (ProgramScan.Program p : quickBotScan()) { if (indexOfIgnoreCase(p.helloString, "This is a JavaX VM.") != 0) bots.add(p.helloString); } fillListWithStrings(list, bots); }); } }