!7 cmodule RadioBot extends DynTalkBot2<.ByServer> { start { makeByServer = () -> new ByServer; useAGIBlueForDropPunctuation = false; preprocessAtSelfToMyName = false; } class ByServer extends DynTalkBot2.ByServer { synchronized S processSimplifiedLine(S s, O... _) { try answer super.processSimplifiedLine(s, _); // adding authorized users etc. new Matches m; if null (s = dropMyPrefixOrNull(s)) null; if (eqic(s, "help")) ret ltrim([[ I play house music in voice channels. !!!play !!!pause !!!stop [Bot made by https://BotCompany.de] ]]).replace("@me", atSelf()); null; } } }