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