Hello,
before 8.2 I was able to avoid Spell Not Ready yet and other error sounds by using the Fizzle’s addon.
Now they’re back.
Is there a way to solve this issue ?
Thanks a lot!
Hello,
before 8.2 I was able to avoid Spell Not Ready yet and other error sounds by using the Fizzle’s addon.
Now they’re back.
Is there a way to solve this issue ?
Thanks a lot!
Sound file replacements don’t work in 8.2.0 since they removed most file paths internally, probably to combat datamining and for optimization.
Hopefully we will get a word back soon.
You can actually disable this “error speech” in the normal menu.
Here you go:
Esc -> System -> Sound
Look into the submenu “Playback” and uncheck the option “Error Speech” below “Dialog”
I don’t seem to have any fizzle/clunk error sounds. I expected to be deafened by them when I logged in this evening but there are none.
My replacements are in the same place as last night and I’m using bartender4. I’ve also hidden the ui errors frame.
Hello,
your suggestions didnt work for me.
I still got the discribed issue
You can mute sounds now with the API, but not replace them
https://wow.gamepedia.com/API_MuteSoundFile
There already is an addon that can mute specific sounds
https://github.com/funkydude/MuteSoundFile
https://www.curseforge.com/wow/addons/mutesoundfile
Mute Annoying WoW Sounds will probably also be updated
https://www.curseforge.com/wow/addons/mute-wow-sounds
Example for muting the fizzle sounds:
local sounds = {
569772, -- sound/spells/fizzle/fizzleholya.ogg
569773, -- sound/spells/fizzle/fizzlefirea.ogg
569774, -- sound/spells/fizzle/fizzlenaturea.ogg
569775, -- sound/spells/fizzle/fizzlefrosta.ogg
569776, -- sound/spells/fizzle/fizzleshadowa.ogg
}
for _, fdid in pairs(sounds) do
MuteSoundFile(fdid)
end
You can put this in a WeakAura or in the REHack addon or make one yourself with https://addon.bool.no/
or download https://www.curseforge.com/wow/addons/nofizzlesounds
Hi, I was going to post the name of same Addon you found, it works like a charm!
Regarding the codes, you can retrieve them on wow.tools, searching the exact name of the files you actually have in the Retail/Sounds/Spells/Fizzle directory.
Hope it works for everyone
Thanks Ketho.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.