static void ai_completeDBOfSmartBotsChatLines() { L msgs = smartBotsChat_readArchive(); for (ChatMsg msg : msgs) { if (msg.nr == 0) { print("Skipping 0 id"); continue; } S x = "Smart Bot's Chat line " + msg.nr; print("Have text for " + x + ": " + msg.text); post(x, "is", quote(msg.text)); post(x, "is", "a Smart Bot's chat line"); post(x, "was", msg.botMark ? "sent by bot" : "sent by human"); post(x, "was posted at time", dateWithSecondsGMT(msg.time)); } }