!7 cmodule AndroidCatBot > DynPrintLogAndEnabled { start { dm_vmBus_onMessage_q incomingDiscordMessage(voidfunc(Map map) { if (!enabled) ret; S input = getString content(map); if (isTrue(map.get('fromBot))) ret; if (empty(input)) ret; O module = map.get('module); long channelID = getLong channelID(map); print("Have " + n2(dm_attractorBotModules(), "bot module")); print("> " + input); dm_sendToAllAttractorBots(input, voidfunc(S s) { print("< " + s); dm_call(module, 'postInChannel, channelID, s); }); }); } }