please include function smartBotsChat_onLine. static L smartBotsChat_readArchive() { ret smartBotsChat_readArchive(1000*1000); } // n = max number of lines to get (from most recent) static L smartBotsChat_readArchive(int n) { int b = smartBotsChat_onLine_firstRead; if (b < 0) b = smartBotsChat_n(); int a = max(0, b-n); ret smartBotsChat_readArchive(a, b); } static L smartBotsChat_readArchive(int a, int b) { L msgs = (L) safeUnstruct(loadPage("http://ai1.space/1011975/raw/archive-from-to?a=" + a + "&b=" + b)); ret mapsToObjects(msgs, ChatMsg); }