!7 cmodule UserSelfInfoBot > DynTalkBot { start { myName = "UserSelfInfoBot"; } S processSimplifiedLine(S s, O... _) { printStruct("params", _); optPar long userID; S user = discordAt(userID); if "what's your name" ret myName; if (containsOneOfTheWords(s, ai_backReferencingWords())) ret null with print("Contains back-referencing word"); S objective = switcheroo_iToName(user, s); print("Objective >> " + objective); if (!contains(objective, user)) ret null with print("No I found"); null; } }