static bool dm_say(O text) { text = trim(strOrNull(text)); if (empty(text)) true; // Successfully said nothing! vmBus_send('saying, text); if (isFalse(dm_callModuleOpt(dm_voiceMatrixModule(), 'isModuleEnabled, dm_current_mandatory_generic()))) ret false with print("[quiet] " + text); print("Saying: " + text); O voiceOutput = dm_voiceOutputModule(); dm_callModule(voiceOutput, 'say, text); ret voiceOutput != null; }