Skip to content

Instantly share code, notes, and snippets.

@robnadin
Last active December 17, 2020 18:44
Show Gist options
  • Save robnadin/62ba9fcb3e6f5ea4ae6b009eaa53e2d3 to your computer and use it in GitHub Desktop.
Save robnadin/62ba9fcb3e6f5ea4ae6b009eaa53e2d3 to your computer and use it in GitHub Desktop.
Mute annoying zone music in World of Warcraft Retail

This gist is a living document and will be updated as and when new sound IDs are added.

Instructions

MuteSoundFile AddOn:

Install the MuteSoundFile AddOn from CurseForge: https://www.curseforge.com/wow/addons/mutesoundfile

SavedVariables File Location:

/Applications/World of Warcraft/_retail_/WTF/Account/ACCOUNTNAME/SavedVariables/MuteSoundFile.lua

Where ACCOUNTNAME is the actual name of your account.

Finding Sound IDs

https://wow.gamepedia.com/API_MuteSoundFile#Finding_Sound_IDs

In-game Configuration:

Use the /msf command to verify the profile has been loaded for your selected character(s).

Credit:

Cerec: https://us.forums.blizzard.com/en/wow/t/mutesoundfile-post-sound-ids-here/215444

MuteSoundFileDB = {
["profileKeys"] = {
-- Character-server profiles go here
},
["profiles"] = {
["Zone Music"] = {
["soundList"] = {
["MUS_52_StormwindKeep_INTRO (sound/music/pandaria/mus_51_alliancebattlemarch_hero_01.mp3)"] = 772728,
["MUS_52_Zone_StormwindKeep (sound/music/pandaria/mus_51_alliancebattlemarch_01.mp3)"] = 772726,
["MUS_52_Zone_StormwindKeep (sound/music/pandaria/mus_51_alliancebattlemarch_02.mp3)"] = 772727,
["MUS_52_Zone_StormwindKeep (sound/music/pandaria/mus_51_forthealliance_02.mp3)"] = 772730,
["MUS_52_Zone_StormwindKeep (sound/music/pandaria/mus_51_forthealliance_02.mp3)"] = 772731,
["MUS_70_Zone_SuramarCity_Occupied_Walk (sound/music/legion/mus_70_moonrising_b.mp3)"] = 1417358,
["MUS_70_Zone_SuramarCity_Occupied_Walk (sound/music/legion/mus_70_moonrising_h.mp3)"] = 1417360,
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment