!7 cmodule ChatBotFrontend > DynChatBotFrontend { Set scriptRefs = syncSet(); transient Set scripts; start-thread { while (dm_booting()) sleepSeconds(0.1); loadScripts(); } void loadScripts { } // API void addScript(S snippetID, S shortClassName) { if (scriptRefs.add(fsI(snippetID) + "/" + assertIdentifier(shortClassName))) { change(); loadScripts(); } } }