!7 p { setConsoleWidth(800); setConsoleHeight(600); centerConsole(); consoleFont(sansSerif(100)); wordWrapConsole(); consoleMaxChars(1000); S last = ""; L possiblePhones = empBlast(); if (empty(possiblePhones)) { print("No activated phone found!"); ret; } S phoneIP = first(possiblePhones); print("Using phone: " + phoneIP); repeat with sleep 1 { S s = sendToPublicCommBotSilently(phoneIP, forward("Recognizer.", "text")); s = substring(s, smartIndexOf(s, ":")+1); S ss = s; if (startsWith(s, last)) ss = dropPrefixTrim(last, s); last = s; if (nempty(ss)) print(ss); } }