!7 sclass DaMsg { S symbol, text; int secs; // seconds after last post bool bot; } p-tt { ai_alternativeSmartBot(); temp ActualThoughtSpace ts = newThoughtSpace(); for (L t : ai_all_threeInARow("Chat line")) { L byBot = map ai_chatLineSentByBot(t); for (S s : t) { long secs = ai_chatLineTimeDiff(s)/1000; Bool bot = ai_chatLineSentByBot(s); print((isTrue(bot) ? "[B]" : isFalse(bot) ? "[U]" : "[?]") + " " + s + ": " + ai_chatLineText(s) + " [" + secs + " s]"); } print(); } }