!7 cmodule CombinedBot > DynAttractorBot { class CombinedBot > AttractorBot { *() { addDefaultAttractor(new Attractor1); } class Attractor1 > DefaultAttractor { run { LS modules = dm_attractorBotModules(); for (S mod : modules) { continue if dm_isMe(mod); LS messages = synchroList(); { temp vmBus_onMessage aBotSaid(voidfunc(O mod2, S output) { if (dm_sameModule(mod, mod2)) msgs.add(output); }); dm_call(mod, 'submitImput, input); } say(msgs); } } } } AttractorBot makeBot() { ret new CombinedBot; } }