Toggle dialog on/off

Hi.

is there any keybind, command or macro to Mute/unmute all dialogs without having to enter the audio settings.

tried this but didnt work.

/run SetCVar(“Sound_EnableDialog”, GetCVar(”Sound_EnableDialog”) ~ 1)`

thanks.

/run local k,v = "Sound_EnableDialog" v = C_CVar.GetCVar(k) C_CVar.SetCVar(k, 1 - v) print(k .. (v == "1" and " Disabled" or " Enabled"))
1 Like

thank you very much! works like a charm.