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; post(x, "is", quote(msg.text)); post(x, "is", "a Smart Bot's chat line"); } }