1. #1

    Question Game Sound addon problem

    I always play with my game sound turned off. However, since 8.3 launched, something is turning my sound back on whenever an encounter ends. It is driving me crazy. I assume its an add-on doing it, but I haven't been able to find which one is causing it.

    Add-ons
    • Elvui
    • Details
    • Bigwigs
    • Littlewigs
    • AdvancedInterfaceOptions
    • RaiderIO
    • Weakauras2
    • Exorsus Raid Tools
    • Method Dungeon Tools
    • Leatrix Plus
    • World Quest Tracker
    • Angry keystones
    • Astral Keys

    It only seems to happen after some sort of boss encounters, and not world activities. Any help identifying the add-on and turning that option would be a great help. Thank you

  2. #2
    My suggestion would be to install the program Notepad++ and use its "Find in Files" function on your Interface folder (the binoculars icon). Search for "Sound_" without the quotes. If you don't know what you're looking for, you can paste the entire search result here.
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  3. #3
    Search "Sound_" (279 hits in 44 files)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\AdvancedInterfaceOptions\cvars.lua (39 hits)
    Line 293: ["Sound_EnableAllSound"] = { prettyName = ENABLE_SOUND, description = OPTION_TOOLTIP_ENABLE_SOUND, type = "boolean" },
    Line 294: ["Sound_EnableDSPEffects"] = { prettyName = ENABLE_DSP_EFFECTS, description = OPTION_TOOLTIP_ENABLE_DSP_EFFECTS, type = "boolean" },
    Line 295: ["Sound_SFXVolume"] = { prettyName = SOUND_VOLUME, description = OPTION_TOOLTIP_SOUND_VOLUME, type = "number" },
    Line 295: ["Sound_SFXVolume"] = { prettyName = SOUND_VOLUME, description = OPTION_TOOLTIP_SOUND_VOLUME, type = "number" },
    Line 295: ["Sound_SFXVolume"] = { prettyName = SOUND_VOLUME, description = OPTION_TOOLTIP_SOUND_VOLUME, type = "number" },
    Line 296: ["Sound_ZoneMusicNoDelay"] = { prettyName = ENABLE_MUSIC_LOOPING, description = OPTION_TOOLTIP_ENABLE_MUSIC_LOOPING, type = "boolean" },
    Line 297: ["Sound_EnableDialog"] = { prettyName = ENABLE_DIALOG, description = OPTION_TOOLTIP_ENABLE_DIALOG, type = "boolean" },
    Line 298: ["Sound_EnableSoundWhenGameIsInBG"] = { prettyName = ENABLE_BGSOUND, description = OPTION_TOOLTIP_ENABLE_BGSOUND, type = "boolean" },
    Line 299: ["Sound_EnableEmoteSounds"] = { prettyName = ENABLE_EMOTE_SOUNDS, description = OPTION_TOOLTIP_ENABLE_EMOTE_SOUNDS, type = "boolean" },
    Line 300: ["Sound_EnableAmbience"] = { prettyName = ENABLE_AMBIENCE, description = OPTION_TOOLTIP_ENABLE_AMBIENCE, type = "boolean" },
    Line 301: ["Sound_DialogVolume"] = { prettyName = DIALOG_VOLUME, description = OPTION_TOOLTIP_DIALOG_VOLUME, type = "number" },
    Line 302: ["Sound_EnablePetBattleMusic"] = { prettyName = ENABLE_PET_BATTLE_MUSIC, description = OPTION_TOOLTIP_ENABLE_PET_BATTLE_MUSIC, type = "boolean" },
    Line 303: ["Sound_MusicVolume"] = { prettyName = MUSIC_VOLUME, description = OPTION_TOOLTIP_MUSIC_VOLUME, type = "number" },
    Line 304: ["Sound_EnableReverb"] = { prettyName = ENABLE_REVERB, description = OPTION_TOOLTIP_ENABLE_REVERB, type = "boolean" },
    Line 305: ["Sound_MasterVolume"] = { prettyName = MASTER_VOLUME, description = OPTION_TOOLTIP_MASTER_VOLUME, type = "number" },
    Line 306: ["Sound_EnableMusic"] = { prettyName = ENABLE_MUSIC, description = OPTION_TOOLTIP_ENABLE_MUSIC, type = "boolean" },
    Line 307: ["Sound_AmbienceVolume"] = { prettyName = AMBIENCE_VOLUME, description = OPTION_TOOLTIP_AMBIENCE_VOLUME, type = "number" },
    Line 308: ["Sound_EnableErrorSpeech"] = { prettyName = ENABLE_ERROR_SPEECH, description = OPTION_TOOLTIP_ENABLE_ERROR_SPEECH, type = "boolean" },
    Line 309: ["Sound_EnableSFX"] = { prettyName = ENABLE_SOUNDFX, description = OPTION_TOOLTIP_ENABLE_SOUNDFX, type = "boolean" },
    Line 310: ["Sound_ListenerAtCharacter"] = { prettyName = ENABLE_SOUND_AT_CHARACTER, description = OPTION_TOOLTIP_ENABLE_SOUND_AT_CHARACTER, type = "boolean" },
    Line 310: ["Sound_ListenerAtCharacter"] = { prettyName = ENABLE_SOUND_AT_CHARACTER, description = OPTION_TOOLTIP_ENABLE_SOUND_AT_CHARACTER, type = "boolean" },
    Line 310: ["Sound_ListenerAtCharacter"] = { prettyName = ENABLE_SOUND_AT_CHARACTER, description = OPTION_TOOLTIP_ENABLE_SOUND_AT_CHARACTER, type = "boolean" },
    Line 311: ["Sound_EnablePetSounds"] = { prettyName = ENABLE_PET_SOUNDS, description = OPTION_TOOLTIP_ENABLE_PET_SOUNDS, type = "boolean" },
    Line 312: ["Sound_EnablePositionalLowPassFilter"] = { prettyName = ENABLE_SOFTWARE_HRTF, description = OPTION_TOOLTIP_ENABLE_SOFTWARE_HRTF, type = "boolean" },
    Line 499: ["Sound_DSPBufferSize"] = { description = "sound buffer size, default 0" },
    Line 500: ["Sound_EnableArmorFoleySoundForOthers"] = {},
    Line 501: ["Sound_EnableArmorFoleySoundForSelf"] = {},
    Line 502: ["Sound_EnableMixMode2"] = {},
    Line 503: ["Sound_EnableMode2"] = {},
    Line 504: ["Sound_MaxCacheSizeInBytes"] = { description = "Max cache size in bytes" },
    Line 505: ["Sound_MaxCacheableSizeInBytes"] = { description = "Max sound size that will be cached, larger files will be streamed instead" },
    Line 506: ["Sound_NumChannels"] = {},
    Line 507: ["Sound_OutputDriverIndex"] = {},
    Line 508: ["Sound_OutputDriverName"] = {},
    Line 509: ["Sound_OutputSampleRate"] = { description = "output sample rate" },
    Line 510: ["Sound_VoiceChatInputDriverIndex"] = {},
    Line 511: ["Sound_VoiceChatInputDriverName"] = {},
    Line 512: ["Sound_VoiceChatOutputDriverIndex"] = {},
    Line 513: ["Sound_VoiceChatOutputDriverName"] = {},
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Loader.lua (2 hits)
    Line 737: local num = tonumber(C_CVar.GetCVar("Sound_NumChannels")) or 0
    Line 739: C_CVar.SetCVar("Sound_NumChannels", "64") -- Blizzard keeps screwing with addon sound priority so we force this minimum
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\deDE.lua (1 hit)
    Line 124: L.SOUND_desc = "Bossfähigkeiten nutzen in der Regel Sounds um wahrgenommen zu werden. Wenn diese Option deaktiviert wird, werden die zugehörigen Sounds nicht abgespielt."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\enUS.lua (1 hit)
    Line 122: L.SOUND_desc = "Boss abilities usually play sounds to help you notice them. If you disable this option, none of the sounds attached to it will play."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\esES.lua (1 hit)
    Line 123: L.SOUND_desc = "Las habilidades de jefes habitualmente reproducen sonidos para ayudarte con ellas. Si desactivas esta opción, ningún sonido adjunto sonará."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\frFR.lua (1 hit)
    Line 124: L.SOUND_desc = "Les techniques des boss sont habituellement accompagnées de sons afin de vous aider à les repérer. Si vous désactivez cette option, aucun des sons qui l'accompagnent ne seront joués."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\itIT.lua (1 hit)
    Line 124: --L.SOUND_desc = "Boss abilities usually play sounds to help you notice them. If you disable this option, none of the sounds attached to it will play."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\koKR.lua (1 hit)
    Line 123: L.SOUND_desc = "보*의 능력들을 **를 통*서 알려줍니*. * 옵션을 *활*화 한*면 * 능력에 **하* **가 들** 않을 것입니*."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\ptBR.lua (1 hit)
    Line 122: --L.SOUND_desc = "Boss abilities usually play sounds to help you notice them. If you disable this option, none of the sounds attached to it will play."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\ruRU.lua (1 hit)
    Line 124: L.SOUND_desc = "Во время произнесения заклинаний боссов обычно вопроизводится звук. При отключении этой опции ни один из звуков не будет воспроизведён."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\zhCN.lua (1 hit)
    Line 124: L.SOUND_desc = "首领技能通常会播放音效来帮助你注意到它。如禁*此选项,不会在� ��戏时附加音效。"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\zhTW.lua (1 hit)
    Line 124: L.SOUND_desc = "首領技能通常會播放音效來提醒你,如果不想附加音效,請禁*此選� ��。"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs_Options\Options.lua (1 hit)
    Line 429: advancedOptions[6] = getSlaveToggle(L.SOUND, L.SOUND_desc, dbKey, module, C.SOUND, check, icons["SOUND"])
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs_Plugins\BossBlock.lua (3 hits)
    Line 128: SetCVar("Sound_EnableSFX", "1")
    Line 210: SetCVar("Sound_EnableSFX", "0")
    Line 245: SetCVar("Sound_EnableSFX", "1")
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\Details\boot.lua (4 hits)
    Line 643: SharedMedia:Register ("sound", "d_gun1", [[Interface\Addons\Details\sounds\sound_gun2.ogg]])
    Line 644: SharedMedia:Register ("sound", "d_gun2", [[Interface\Addons\Details\sounds\sound_gun3.ogg]])
    Line 645: SharedMedia:Register ("sound", "d_jedi1", [[Interface\Addons\Details\sounds\sound_jedi1.ogg]])
    Line 646: SharedMedia:Register ("sound", "d_whip1", [[Interface\Addons\Details\sounds\sound_whip1.ogg]])
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\Details\functions\link.lua (26 hits)
    Line 1180: ["sound_channel"] = "Master",
    Line 1226: local sound_prototype = {
    Line 1231: ["sound_channel"] = "Master",
    Line 1236: local sound_prototype_custom = {
    Line 1241: ["sound_path"] = "Interface\\Quiet.ogg",
    Line 1242: ["sound_channel"] = "Master",
    Line 1632: local add = _detalhes.table.copy ({}, sound_prototype_custom)
    Line 1633: add.actions.start.sound_path = sound.sound_path
    Line 1633: add.actions.start.sound_path = sound.sound_path
    Line 1634: add.actions.start.sound_channel = sound.sound_channel or "Master"
    Line 1634: add.actions.start.sound_channel = sound.sound_channel or "Master"
    Line 1638: local add = _detalhes.table.copy ({}, sound_prototype)
    Line 2101: PlaySoundFile (file.sound_path, "Master")
    Line 2146: local sound_options = function()
    Line 2168: if (WeakAuras and WeakAuras.sound_types) then
    Line 2169: for soundFile, name in pairs (WeakAuras.sound_types) do
    Line 2183: tinsert (t, {color = "yellow", label = sound.name, value = {sound_path = sound.file}, icon = [[Interface\Buttons\UI-GuildButton-MOTD-Up]], onclick = play_sound, iconsize = iconsize})
    Line 2190: local sound_effect = fw:CreateDropDown (f, sound_options, 1, 150, 20, "SoundEffectDropdown", "$parentSoundEffectDropdown")
    Line 2190: local sound_effect = fw:CreateDropDown (f, sound_options, 1, 150, 20, "SoundEffectDropdown", "$parentSoundEffectDropdown")
    Line 2191: sound_effect:SetTemplate (slider_template)
    Line 2192: local sound_effect_label = fw:CreateLabel (f, "Play Sound: ", nil, nil, "GameFontNormal")
    Line 2193: sound_effect:SetPoint ("left", sound_effect_label, "right", 2, 0)
    Line 2193: sound_effect:SetPoint ("left", sound_effect_label, "right", 2, 0)
    Line 2194: sound_effect.tooltip = "Sound played when the aura triggers."
    Line 2414: sound_effect_label:SetPoint ("topleft", f, "topleft", x2_start, ((y_start*7) + (47)) * -1)
    Line 2910: sound_channel = "",
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\ElvUI\Core\AprilFools.lua (10 hits)
    Line 29: SetCVar('Sound_EnableAllSound', self.oldEnableAllSound)
    Line 30: SetCVar('Sound_EnableMusic', self.oldEnableMusic)
    Line 67: self.oldEnableAllSound = GetCVar('Sound_EnableAllSound')
    Line 68: self.oldEnableMusic = GetCVar('Sound_EnableMusic')
    Line 70: SetCVar('Sound_EnableAllSound', 1)
    Line 71: SetCVar('Sound_EnableMusic', 1)
    Line 161: self.oldEnableAllSound = GetCVar('Sound_EnableAllSound')
    Line 162: self.oldEnableMusic = GetCVar('Sound_EnableMusic')
    Line 205: SetCVar('Sound_EnableAllSound', 1)
    Line 206: SetCVar('Sound_EnableMusic', 1)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\ElvUI\Core\StaticPopups.lua (4 hits)
    Line 366: SetCVar('Sound_EnableAllSound', E.oldEnableAllSound)
    Line 367: SetCVar('Sound_EnableMusic', E.oldEnableMusic)
    Line 372: SetCVar('Sound_EnableAllSound', E.oldEnableAllSound)
    Line 373: SetCVar('Sound_EnableMusic', E.oldEnableMusic)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\ElvUI\Modules\UnitFrames\UnitFrames.lua (3 hits)
    Line 34: local SOUNDKIT_INTERFACE_SOUND_LOST_TARGET_UNIT = SOUNDKIT.INTERFACE_SOUND_LOST_TARGET_UNIT
    Line 34: local SOUNDKIT_INTERFACE_SOUND_LOST_TARGET_UNIT = SOUNDKIT.INTERFACE_SOUND_LOST_TARGET_UNIT
    Line 1379: PlaySound(SOUNDKIT_INTERFACE_SOUND_LOST_TARGET_UNIT)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\Leatrix_Plus\Leatrix_Plus.lua (34 hits)
    Line 3502: Sound_ToggleMusic();
    Line 3613: SetCVar("Sound_MasterVolume", LeaPlusLC["LeaPlusMaxVol"]);
    Line 3620: LeaPlusLC["LeaPlusMaxVol"] = tonumber(GetCVar("Sound_MasterVolume"));
    Line 3626: LeaPlusCB["LeaPlusMaxVol"]:SetValue(GetCVar("Sound_MasterVolume"))
    Line 5764: local emoset = GetCVar("Sound_EnableEmoteSounds")
    Line 5769: SetCVar("Sound_EnableEmoteSounds", "0")
    Line 5778: SetCVar("Sound_EnableEmoteSounds", "0")
    Line 5787: SetCVar("Sound_EnableEmoteSounds", "0")
    Line 5794: SetCVar("Sound_EnableEmoteSounds", "1")
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6847: if GetCVar("Sound_EnableAllSound") == "0" then SetCVar("Sound_EnableAllSound", "1") end
    Line 6847: if GetCVar("Sound_EnableAllSound") == "0" then SetCVar("Sound_EnableAllSound", "1") end
    Line 6849: if GetCVar("Sound_EnableMusic") == "1" then SetCVar("Sound_EnableMusic", "0") end
    Line 6849: if GetCVar("Sound_EnableMusic") == "1" then SetCVar("Sound_EnableMusic", "0") end
    Line 7823: SetCVar("Sound_EnableEmoteSounds", "1")
    Line 8582: Sound_GameSystem_RestartSoundSystem()
    Line 8925: Sound_GameSystem_RestartSoundSystem()
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\MacroToolkit\MacroToolkit.lua (2 hits)
    Line 337: elseif command == "mtso" then SetCVar("Sound_EnableSFX", 1)
    Line 338: elseif command == "mtsx" then SetCVar("Sound_EnableSFX", 0)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\MacroToolkit\modules\parser.lua (2 hits)
    Line 578: l = string.gsub(l, format("%s Sound_EnableSFX 0", scon), format("%smtsx", MT.slash))
    Line 579: l = string.gsub(l, format("%s Sound_EnableSFX 1", scon), format("%smtso", MT.slash))
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\TomTom\TomTom_Config.lua (1 hit)
    Line 251: ["SFX"] = SOUND_VOLUME,
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAuras\RegionTypes\RegionPrototype.lua (12 hits)
    Line 221: if (not options or options.sound_type == "Stop") then
    Line 232: if (options.sound_path) then
    Line 233: local ok, _, handle = pcall(PlaySoundFile, options.sound_path, options.sound_channel or "Master");
    Line 233: local ok, _, handle = pcall(PlaySoundFile, options.sound_path, options.sound_channel or "Master");
    Line 239: if (options.sound_kit_id) then
    Line 240: local ok, _, handle = pcall(PlaySound,options.sound_kit_id, options.sound_channel or "Master");
    Line 240: local ok, _, handle = pcall(PlaySound,options.sound_kit_id, options.sound_channel or "Master");
    Line 246: local ok, _, handle = pcall(PlaySoundFile, options.sound, options.sound_channel or "Master");
    Line 265: local loop = options.do_loop or options.sound_type == "Loop";
    Line 266: if (loop and options.sound_repeat and options.sound_repeat < WeakAuras.maxTimerDuration) then
    Line 266: if (loop and options.sound_repeat and options.sound_repeat < WeakAuras.maxTimerDuration) then
    Line 267: self.soundRepeatTimer = WeakAuras.timer:ScheduleRepeatingTimer(SoundPlayHelper, options.sound_repeat, self);
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAuras\Types.lua (5 hits)
    Line 72: WeakAuras.sound_channel_types = {
    Line 80: WeakAuras.sound_condition_types = {
    Line 1584: WeakAuras.sound_types = {
    Line 1590: WeakAuras.sound_types[path] = name
    Line 1597: WeakAuras.sound_types[path] = key
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAuras\WeakAuras.lua (11 hits)
    Line 740: return string.format("{ sound = %q, sound_channel = %q, sound_path = %q, sound_kit_id = %q, sound_type = %q, %s}",
    Line 740: return string.format("{ sound = %q, sound_channel = %q, sound_path = %q, sound_kit_id = %q, sound_type = %q, %s}",
    Line 740: return string.format("{ sound = %q, sound_channel = %q, sound_path = %q, sound_kit_id = %q, sound_type = %q, %s}",
    Line 740: return string.format("{ sound = %q, sound_channel = %q, sound_path = %q, sound_kit_id = %q, sound_type = %q, %s}",
    Line 741: tostring(value.sound or ""), tostring(value.sound_channel or ""), tostring(value.sound_path or ""),
    Line 741: tostring(value.sound or ""), tostring(value.sound_channel or ""), tostring(value.sound_path or ""),
    Line 742: tostring(value.sound_kit_id or ""), tostring(value.sound_type or ""),
    Line 742: tostring(value.sound_kit_id or ""), tostring(value.sound_type or ""),
    Line 743: value.sound_repeat and "sound_repeat = " .. tostring(value.sound_repeat) or "nil");
    Line 743: value.sound_repeat and "sound_repeat = " .. tostring(value.sound_repeat) or "nil");
    Line 743: value.sound_repeat and "sound_repeat = " .. tostring(value.sound_repeat) or "nil");
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAurasOptions\ActionOptions.lua (18 hits)
    Line 7: local sound_types = WeakAuras.sound_types;
    Line 7: local sound_types = WeakAuras.sound_types;
    Line 59: if(value == "sound" or value == "sound_path") then
    Line 61: elseif(value == "sound_kit_id") then
    Line 169: start_sound_repeat = {
    Line 177: start_sound_repeat_space = {
    Line 189: values = sound_types,
    Line 193: start_sound_channel = {
    Line 198: values = WeakAuras.sound_channel_types,
    Line 200: get = function() return data.actions.start.sound_channel or "Master" end
    Line 202: start_sound_path = {
    Line 210: start_sound_kit_id = {
    Line 379: values = sound_types,
    Line 383: finish_sound_channel = {
    Line 388: values = WeakAuras.sound_channel_types,
    Line 390: get = function() return data.actions.finish.sound_channel or "Master" end
    Line 392: finish_sound_path = {
    Line 400: finish_sound_kit_id = {
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAurasOptions\ConditionOptions.lua (46 hits)
    Line 443: args["condition" .. i .. "value" .. j .. "sound_type"] = {
    Line 446: values = WeakAuras.sound_condition_types,
    Line 447: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_type", L["Differences"]),
    Line 448: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_type", propertyType, WeakAuras.sound_condition_types),
    Line 448: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_type", propertyType, WeakAuras.sound_condition_types),
    Line 451: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_type;
    Line 453: set = setValueComplex("sound_type"),
    Line 458: local sound_type = type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_type;
    Line 458: local sound_type = type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_type;
    Line 459: if (sound_type) then
    Line 460: return sound_type == needle;
    Line 464: if (type(reference.value) == "table" and reference.value.sound_type == needle) then
    Line 475: values = WeakAuras.sound_types,
    Line 477: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound", propertyType, WeakAuras.sound_types),
    Line 488: args["condition" .. i .. "value" .. j .. "sound_channel"] = {
    Line 491: values = WeakAuras.sound_channel_types,
    Line 492: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_channel", L["Sound Channel"], L["Sound Channel"]),
    Line 493: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_channel", propertyType, WeakAuras.sound_channel_types),
    Line 493: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_channel", propertyType, WeakAuras.sound_channel_types),
    Line 496: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_channel;
    Line 498: set = setValueComplex("sound_channel"),
    Line 503: args["condition" .. i .. "value" .. j .. "sound_repeat"] = {
    Line 509: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_repeat", L["Repeat every"], L["Repeat every"]),
    Line 510: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_repeat", propertyType),
    Line 513: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_repeat;
    Line 515: set = setValueComplex("sound_repeat"),
    Line 521: args["condition" .. i .. "value" .. j .. "sound_repeat_space"] = {
    Line 531: local sound_type = type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound;
    Line 532: if (sound_type) then
    Line 533: return sound_type == needle;
    Line 545: args["condition" .. i .. "value" .. j .. "sound_path"] = {
    Line 548: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_path", L["Sound File Path"], L["Sound File Path"]),
    Line 549: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_path", propertyType),
    Line 552: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_path;
    Line 554: set = wrapWithPlaySound(setValueComplex("sound_path")),
    Line 559: args["condition" .. i .. "value" .. j .. "sound_kit_id"] = {
    Line 562: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_kit_id", L["Sound Kit ID"], L["Sound Kit ID"]),
    Line 563: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_kit_id", propertyType),
    Line 566: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_kit_id;
    Line 568: set = wrapWithPlaySound(setValueComplex("sound_kit_id")),
    Line 829: return samevalue.sound and samevalue.sound_type;
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\deDE.lua (2 hits)
    Line 134: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Immer abspielen, selbst wenn Soundeffekte deaktiviert sind"
    Line 135: L["S_RAREFINDER_SOUND_ENABLED"] = "Einen Ton für seltenen Gegner auf der Minikarte abspielen"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\enUS.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Play Even When Sound Effects Are Disabled"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "Play Sound for Rare on Minimap"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\esES.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Sonar Incluso Cuando los Efectos de Sonido Están Desactivados"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "Lanzar sonido por monstruo raro en minimapa"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\esMX.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Reproducir incluso cuando los efectos de sonido estén deshabilitados"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "Reproducir Sonido para Raro en el Minimapa"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\frFR.lua (2 hits)
    Line 142: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Émettre un son même si les effets sonores sont désactivés"
    Line 143: L["S_RAREFINDER_SOUND_ENABLED"] = "Émettre un son en cas d'élite sur la minicarte."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\itIT.lua (2 hits)
    Line 186: --[[ L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = ""--]]
    Line 188: --[[ L["S_RAREFINDER_SOUND_ENABLED"] = ""--]]
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\koKR.lua (2 hits)
    Line 132: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "** 효과가 꺼져있어* 재*"
    Line 133: L["S_RAREFINDER_SOUND_ENABLED"] = "미니맵에 희귀 몬*터가 나타나면 ** 재*"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\ptBR.lua (2 hits)
    Line 152: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Reproduzir mesmo quando os efeitos sonoros estão desativados"
    Line 153: L["S_RAREFINDER_SOUND_ENABLED"] = "Reproduzir Som para Raros no Mini Mapa"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\ruRU.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Со звуком, даже когда звуковые эффекты отключены"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "Воспроизведение звука для редких мобов на мини-карте"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\zhCN.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "音效已禁*时仍播放"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "迷你地图出现稀有时播放音效"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\zhTW.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "停*音效時仍然要播放"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "小地圖出現稀有怪時播放音效"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_Core.lua (15 hits)
    Line 2740: if (WorldQuestTracker.db.profile.sound_enabled) then
    Line 4017: GameCooltip:AddLine (L["S_RAREFINDER_SOUND_ENABLED"], "", 2)
    Line 4026: if (WorldQuestTracker.db.profile.rarescan.playsound_volume == 1) then
    Line 4031: GameCooltip:AddMenu (2, options_on_click, "rarescan", "playsound_volume", 1)
    Line 4034: if (WorldQuestTracker.db.profile.rarescan.playsound_volume == 2) then
    Line 4039: GameCooltip:AddMenu (2, options_on_click, "rarescan", "playsound_volume", 2)
    Line 4042: if (WorldQuestTracker.db.profile.rarescan.playsound_volume == 3) then
    Line 4047: GameCooltip:AddMenu (2, options_on_click, "rarescan", "playsound_volume", 3)
    Line 4049: GameCooltip:AddLine (L["S_RAREFINDER_SOUND_ALWAYSPLAY"], "", 2)
    Line 4110: if (WorldQuestTracker.db.profile.sound_enabled) then
    Line 4115: GameCooltip:AddMenu (1, options_on_click, "sound_enabled", not WorldQuestTracker.db.profile.sound_enabled)
    Line 4115: GameCooltip:AddMenu (1, options_on_click, "sound_enabled", not WorldQuestTracker.db.profile.sound_enabled)
    Line 4442: if (WorldQuestTracker.db.profile.sound_enabled) then
    Line 4475: if (WorldQuestTracker.db.profile.sound_enabled) then
    Line 4497: if (WorldQuestTracker.db.profile.sound_enabled) then
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_FrameAPI.lua (1 hit)
    Line 720: if (WorldQuestTracker.db.profile.sound_enabled) then
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_Initialize.lua (3 hits)
    Line 120: playsound_volume = 2,
    Line 121: playsound_warnings = 0,
    Line 184: sound_enabled = true,
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_RareFinder.lua (4 hits)
    Line 911: PlaySoundFile ("Interface\\AddOns\\WorldQuestTracker\\media\\rare_found" .. WorldQuestTracker.db.profile.rarescan.playsound_volume .. ".ogg", WorldQuestTracker.db.profile.rarescan.use_master and "Master" or "SFX")
    Line 912: if (WorldQuestTracker.db.profile.rarescan.playsound_warnings < 3) then
    Line 913: WorldQuestTracker.db.profile.rarescan.playsound_warnings = WorldQuestTracker.db.profile.rarescan.playsound_warnings + 1
    Line 913: WorldQuestTracker.db.profile.rarescan.playsound_warnings = WorldQuestTracker.db.profile.rarescan.playsound_warnings + 1
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_WorldMap.lua (1 hit)
    Line 139: if (WorldQuestTracker.db.profile.sound_enabled) then

    - - - Updated - - -

    Search "Sound_" (279 hits in 44 files)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\AdvancedInterfaceOptions\cvars.lua (39 hits)
    Line 293: ["Sound_EnableAllSound"] = { prettyName = ENABLE_SOUND, description = OPTION_TOOLTIP_ENABLE_SOUND, type = "boolean" },
    Line 294: ["Sound_EnableDSPEffects"] = { prettyName = ENABLE_DSP_EFFECTS, description = OPTION_TOOLTIP_ENABLE_DSP_EFFECTS, type = "boolean" },
    Line 295: ["Sound_SFXVolume"] = { prettyName = SOUND_VOLUME, description = OPTION_TOOLTIP_SOUND_VOLUME, type = "number" },
    Line 295: ["Sound_SFXVolume"] = { prettyName = SOUND_VOLUME, description = OPTION_TOOLTIP_SOUND_VOLUME, type = "number" },
    Line 295: ["Sound_SFXVolume"] = { prettyName = SOUND_VOLUME, description = OPTION_TOOLTIP_SOUND_VOLUME, type = "number" },
    Line 296: ["Sound_ZoneMusicNoDelay"] = { prettyName = ENABLE_MUSIC_LOOPING, description = OPTION_TOOLTIP_ENABLE_MUSIC_LOOPING, type = "boolean" },
    Line 297: ["Sound_EnableDialog"] = { prettyName = ENABLE_DIALOG, description = OPTION_TOOLTIP_ENABLE_DIALOG, type = "boolean" },
    Line 298: ["Sound_EnableSoundWhenGameIsInBG"] = { prettyName = ENABLE_BGSOUND, description = OPTION_TOOLTIP_ENABLE_BGSOUND, type = "boolean" },
    Line 299: ["Sound_EnableEmoteSounds"] = { prettyName = ENABLE_EMOTE_SOUNDS, description = OPTION_TOOLTIP_ENABLE_EMOTE_SOUNDS, type = "boolean" },
    Line 300: ["Sound_EnableAmbience"] = { prettyName = ENABLE_AMBIENCE, description = OPTION_TOOLTIP_ENABLE_AMBIENCE, type = "boolean" },
    Line 301: ["Sound_DialogVolume"] = { prettyName = DIALOG_VOLUME, description = OPTION_TOOLTIP_DIALOG_VOLUME, type = "number" },
    Line 302: ["Sound_EnablePetBattleMusic"] = { prettyName = ENABLE_PET_BATTLE_MUSIC, description = OPTION_TOOLTIP_ENABLE_PET_BATTLE_MUSIC, type = "boolean" },
    Line 303: ["Sound_MusicVolume"] = { prettyName = MUSIC_VOLUME, description = OPTION_TOOLTIP_MUSIC_VOLUME, type = "number" },
    Line 304: ["Sound_EnableReverb"] = { prettyName = ENABLE_REVERB, description = OPTION_TOOLTIP_ENABLE_REVERB, type = "boolean" },
    Line 305: ["Sound_MasterVolume"] = { prettyName = MASTER_VOLUME, description = OPTION_TOOLTIP_MASTER_VOLUME, type = "number" },
    Line 306: ["Sound_EnableMusic"] = { prettyName = ENABLE_MUSIC, description = OPTION_TOOLTIP_ENABLE_MUSIC, type = "boolean" },
    Line 307: ["Sound_AmbienceVolume"] = { prettyName = AMBIENCE_VOLUME, description = OPTION_TOOLTIP_AMBIENCE_VOLUME, type = "number" },
    Line 308: ["Sound_EnableErrorSpeech"] = { prettyName = ENABLE_ERROR_SPEECH, description = OPTION_TOOLTIP_ENABLE_ERROR_SPEECH, type = "boolean" },
    Line 309: ["Sound_EnableSFX"] = { prettyName = ENABLE_SOUNDFX, description = OPTION_TOOLTIP_ENABLE_SOUNDFX, type = "boolean" },
    Line 310: ["Sound_ListenerAtCharacter"] = { prettyName = ENABLE_SOUND_AT_CHARACTER, description = OPTION_TOOLTIP_ENABLE_SOUND_AT_CHARACTER, type = "boolean" },
    Line 310: ["Sound_ListenerAtCharacter"] = { prettyName = ENABLE_SOUND_AT_CHARACTER, description = OPTION_TOOLTIP_ENABLE_SOUND_AT_CHARACTER, type = "boolean" },
    Line 310: ["Sound_ListenerAtCharacter"] = { prettyName = ENABLE_SOUND_AT_CHARACTER, description = OPTION_TOOLTIP_ENABLE_SOUND_AT_CHARACTER, type = "boolean" },
    Line 311: ["Sound_EnablePetSounds"] = { prettyName = ENABLE_PET_SOUNDS, description = OPTION_TOOLTIP_ENABLE_PET_SOUNDS, type = "boolean" },
    Line 312: ["Sound_EnablePositionalLowPassFilter"] = { prettyName = ENABLE_SOFTWARE_HRTF, description = OPTION_TOOLTIP_ENABLE_SOFTWARE_HRTF, type = "boolean" },
    Line 499: ["Sound_DSPBufferSize"] = { description = "sound buffer size, default 0" },
    Line 500: ["Sound_EnableArmorFoleySoundForOthers"] = {},
    Line 501: ["Sound_EnableArmorFoleySoundForSelf"] = {},
    Line 502: ["Sound_EnableMixMode2"] = {},
    Line 503: ["Sound_EnableMode2"] = {},
    Line 504: ["Sound_MaxCacheSizeInBytes"] = { description = "Max cache size in bytes" },
    Line 505: ["Sound_MaxCacheableSizeInBytes"] = { description = "Max sound size that will be cached, larger files will be streamed instead" },
    Line 506: ["Sound_NumChannels"] = {},
    Line 507: ["Sound_OutputDriverIndex"] = {},
    Line 508: ["Sound_OutputDriverName"] = {},
    Line 509: ["Sound_OutputSampleRate"] = { description = "output sample rate" },
    Line 510: ["Sound_VoiceChatInputDriverIndex"] = {},
    Line 511: ["Sound_VoiceChatInputDriverName"] = {},
    Line 512: ["Sound_VoiceChatOutputDriverIndex"] = {},
    Line 513: ["Sound_VoiceChatOutputDriverName"] = {},
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Loader.lua (2 hits)
    Line 737: local num = tonumber(C_CVar.GetCVar("Sound_NumChannels")) or 0
    Line 739: C_CVar.SetCVar("Sound_NumChannels", "64") -- Blizzard keeps screwing with addon sound priority so we force this minimum
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\deDE.lua (1 hit)
    Line 124: L.SOUND_desc = "Bossfähigkeiten nutzen in der Regel Sounds um wahrgenommen zu werden. Wenn diese Option deaktiviert wird, werden die zugehörigen Sounds nicht abgespielt."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\enUS.lua (1 hit)
    Line 122: L.SOUND_desc = "Boss abilities usually play sounds to help you notice them. If you disable this option, none of the sounds attached to it will play."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\esES.lua (1 hit)
    Line 123: L.SOUND_desc = "Las habilidades de jefes habitualmente reproducen sonidos para ayudarte con ellas. Si desactivas esta opción, ningún sonido adjunto sonará."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\frFR.lua (1 hit)
    Line 124: L.SOUND_desc = "Les techniques des boss sont habituellement accompagnées de sons afin de vous aider à les repérer. Si vous désactivez cette option, aucun des sons qui l'accompagnent ne seront joués."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\itIT.lua (1 hit)
    Line 124: --L.SOUND_desc = "Boss abilities usually play sounds to help you notice them. If you disable this option, none of the sounds attached to it will play."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\koKR.lua (1 hit)
    Line 123: L.SOUND_desc = "보*의 능력들을 **를 통*서 알려줍니*. * 옵션을 *활*화 한*면 * 능력에 **하* **가 들** 않을 것입니*."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\ptBR.lua (1 hit)
    Line 122: --L.SOUND_desc = "Boss abilities usually play sounds to help you notice them. If you disable this option, none of the sounds attached to it will play."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\ruRU.lua (1 hit)
    Line 124: L.SOUND_desc = "Во время произнесения заклинаний боссов обычно вопроизводится звук. При отключении этой опции ни один из звуков не будет воспроизведён."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\zhCN.lua (1 hit)
    Line 124: L.SOUND_desc = "首领技能通常会播放音效来帮助你注意到它。如禁*此选项,不会在� ��戏时附加音效。"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs\Locales\zhTW.lua (1 hit)
    Line 124: L.SOUND_desc = "首領技能通常會播放音效來提醒你,如果不想附加音效,請禁*此選� ��。"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs_Options\Options.lua (1 hit)
    Line 429: advancedOptions[6] = getSlaveToggle(L.SOUND, L.SOUND_desc, dbKey, module, C.SOUND, check, icons["SOUND"])
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\BigWigs_Plugins\BossBlock.lua (3 hits)
    Line 128: SetCVar("Sound_EnableSFX", "1")
    Line 210: SetCVar("Sound_EnableSFX", "0")
    Line 245: SetCVar("Sound_EnableSFX", "1")
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\Details\boot.lua (4 hits)
    Line 643: SharedMedia:Register ("sound", "d_gun1", [[Interface\Addons\Details\sounds\sound_gun2.ogg]])
    Line 644: SharedMedia:Register ("sound", "d_gun2", [[Interface\Addons\Details\sounds\sound_gun3.ogg]])
    Line 645: SharedMedia:Register ("sound", "d_jedi1", [[Interface\Addons\Details\sounds\sound_jedi1.ogg]])
    Line 646: SharedMedia:Register ("sound", "d_whip1", [[Interface\Addons\Details\sounds\sound_whip1.ogg]])
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\Details\functions\link.lua (26 hits)
    Line 1180: ["sound_channel"] = "Master",
    Line 1226: local sound_prototype = {
    Line 1231: ["sound_channel"] = "Master",
    Line 1236: local sound_prototype_custom = {
    Line 1241: ["sound_path"] = "Interface\\Quiet.ogg",
    Line 1242: ["sound_channel"] = "Master",
    Line 1632: local add = _detalhes.table.copy ({}, sound_prototype_custom)
    Line 1633: add.actions.start.sound_path = sound.sound_path
    Line 1633: add.actions.start.sound_path = sound.sound_path
    Line 1634: add.actions.start.sound_channel = sound.sound_channel or "Master"
    Line 1634: add.actions.start.sound_channel = sound.sound_channel or "Master"
    Line 1638: local add = _detalhes.table.copy ({}, sound_prototype)
    Line 2101: PlaySoundFile (file.sound_path, "Master")
    Line 2146: local sound_options = function()
    Line 2168: if (WeakAuras and WeakAuras.sound_types) then
    Line 2169: for soundFile, name in pairs (WeakAuras.sound_types) do
    Line 2183: tinsert (t, {color = "yellow", label = sound.name, value = {sound_path = sound.file}, icon = [[Interface\Buttons\UI-GuildButton-MOTD-Up]], onclick = play_sound, iconsize = iconsize})
    Line 2190: local sound_effect = fw:CreateDropDown (f, sound_options, 1, 150, 20, "SoundEffectDropdown", "$parentSoundEffectDropdown")
    Line 2190: local sound_effect = fw:CreateDropDown (f, sound_options, 1, 150, 20, "SoundEffectDropdown", "$parentSoundEffectDropdown")
    Line 2191: sound_effect:SetTemplate (slider_template)
    Line 2192: local sound_effect_label = fw:CreateLabel (f, "Play Sound: ", nil, nil, "GameFontNormal")
    Line 2193: sound_effect:SetPoint ("left", sound_effect_label, "right", 2, 0)
    Line 2193: sound_effect:SetPoint ("left", sound_effect_label, "right", 2, 0)
    Line 2194: sound_effect.tooltip = "Sound played when the aura triggers."
    Line 2414: sound_effect_label:SetPoint ("topleft", f, "topleft", x2_start, ((y_start*7) + (47)) * -1)
    Line 2910: sound_channel = "",
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\ElvUI\Core\AprilFools.lua (10 hits)
    Line 29: SetCVar('Sound_EnableAllSound', self.oldEnableAllSound)
    Line 30: SetCVar('Sound_EnableMusic', self.oldEnableMusic)
    Line 67: self.oldEnableAllSound = GetCVar('Sound_EnableAllSound')
    Line 68: self.oldEnableMusic = GetCVar('Sound_EnableMusic')
    Line 70: SetCVar('Sound_EnableAllSound', 1)
    Line 71: SetCVar('Sound_EnableMusic', 1)
    Line 161: self.oldEnableAllSound = GetCVar('Sound_EnableAllSound')
    Line 162: self.oldEnableMusic = GetCVar('Sound_EnableMusic')
    Line 205: SetCVar('Sound_EnableAllSound', 1)
    Line 206: SetCVar('Sound_EnableMusic', 1)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\ElvUI\Core\StaticPopups.lua (4 hits)
    Line 366: SetCVar('Sound_EnableAllSound', E.oldEnableAllSound)
    Line 367: SetCVar('Sound_EnableMusic', E.oldEnableMusic)
    Line 372: SetCVar('Sound_EnableAllSound', E.oldEnableAllSound)
    Line 373: SetCVar('Sound_EnableMusic', E.oldEnableMusic)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\ElvUI\Modules\UnitFrames\UnitFrames.lua (3 hits)
    Line 34: local SOUNDKIT_INTERFACE_SOUND_LOST_TARGET_UNIT = SOUNDKIT.INTERFACE_SOUND_LOST_TARGET_UNIT
    Line 34: local SOUNDKIT_INTERFACE_SOUND_LOST_TARGET_UNIT = SOUNDKIT.INTERFACE_SOUND_LOST_TARGET_UNIT
    Line 1379: PlaySound(SOUNDKIT_INTERFACE_SOUND_LOST_TARGET_UNIT)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\Leatrix_Plus\Leatrix_Plus.lua (34 hits)
    Line 3502: Sound_ToggleMusic();
    Line 3613: SetCVar("Sound_MasterVolume", LeaPlusLC["LeaPlusMaxVol"]);
    Line 3620: LeaPlusLC["LeaPlusMaxVol"] = tonumber(GetCVar("Sound_MasterVolume"));
    Line 3626: LeaPlusCB["LeaPlusMaxVol"]:SetValue(GetCVar("Sound_MasterVolume"))
    Line 5764: local emoset = GetCVar("Sound_EnableEmoteSounds")
    Line 5769: SetCVar("Sound_EnableEmoteSounds", "0")
    Line 5778: SetCVar("Sound_EnableEmoteSounds", "0")
    Line 5787: SetCVar("Sound_EnableEmoteSounds", "0")
    Line 5794: SetCVar("Sound_EnableEmoteSounds", "1")
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6012: Zn(L["Zones"], L["Kul Tiras"], L["Tiragarde Sound"] , { "|cffffd800" .. L["Zones"] .. ": " .. L["Tiragarde Sound"], prefol, "MUS_80_TiragardeSound_Walk_Day#115888", "MUS_80_TiragardeSound_Walk_Night#115896", "MUS_80_TiragardeSound_Anglepoint_OldGods#116661", "MUS_80_TiragardeSound_Ashvane#115988", "MUS_80_TiragardeSound_Boralus_Day#116005", "MUS_80_TiragardeSound_Boralus_Night#116006", "MUS_80_TiragardeSound_Estate_Day#115967", --[["MUS_80_TiragardeSound_Estate_Night#115968",]] "MUS_80_TirgardeSound_Freehold#116110", "MUS_80_TiragardeSound_SirenSong#115999", "MUS_80_TiragardeSound_SirenSong_Cave#116659", "MUS_80_TiragardeSound_Proudmore_Day#116290", "MUS_80_TiragardeSound_Proudmore_Night#116291", "MUS_80_TiragardeSound_VigilHill_Day#115997", --[["MUS_80_TiragardeSound_VigilHill_Night#115998",]] "MUS_80_TiragardeSound_Witch#116660", --[["MUS_80_TiragardeSound_Taverns_Day#116559", "MUS_80_TiragardeSound_Taverns_Night#116560",]] "MUS_80_Vol'dun_Azerite#116567",})
    Line 6847: if GetCVar("Sound_EnableAllSound") == "0" then SetCVar("Sound_EnableAllSound", "1") end
    Line 6847: if GetCVar("Sound_EnableAllSound") == "0" then SetCVar("Sound_EnableAllSound", "1") end
    Line 6849: if GetCVar("Sound_EnableMusic") == "1" then SetCVar("Sound_EnableMusic", "0") end
    Line 6849: if GetCVar("Sound_EnableMusic") == "1" then SetCVar("Sound_EnableMusic", "0") end
    Line 7823: SetCVar("Sound_EnableEmoteSounds", "1")
    Line 8582: Sound_GameSystem_RestartSoundSystem()
    Line 8925: Sound_GameSystem_RestartSoundSystem()
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\MacroToolkit\MacroToolkit.lua (2 hits)
    Line 337: elseif command == "mtso" then SetCVar("Sound_EnableSFX", 1)
    Line 338: elseif command == "mtsx" then SetCVar("Sound_EnableSFX", 0)
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\MacroToolkit\modules\parser.lua (2 hits)
    Line 578: l = string.gsub(l, format("%s Sound_EnableSFX 0", scon), format("%smtsx", MT.slash))
    Line 579: l = string.gsub(l, format("%s Sound_EnableSFX 1", scon), format("%smtso", MT.slash))
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\TomTom\TomTom_Config.lua (1 hit)
    Line 251: ["SFX"] = SOUND_VOLUME,
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAuras\RegionTypes\RegionPrototype.lua (12 hits)
    Line 221: if (not options or options.sound_type == "Stop") then
    Line 232: if (options.sound_path) then
    Line 233: local ok, _, handle = pcall(PlaySoundFile, options.sound_path, options.sound_channel or "Master");
    Line 233: local ok, _, handle = pcall(PlaySoundFile, options.sound_path, options.sound_channel or "Master");
    Line 239: if (options.sound_kit_id) then
    Line 240: local ok, _, handle = pcall(PlaySound,options.sound_kit_id, options.sound_channel or "Master");
    Line 240: local ok, _, handle = pcall(PlaySound,options.sound_kit_id, options.sound_channel or "Master");
    Line 246: local ok, _, handle = pcall(PlaySoundFile, options.sound, options.sound_channel or "Master");
    Line 265: local loop = options.do_loop or options.sound_type == "Loop";
    Line 266: if (loop and options.sound_repeat and options.sound_repeat < WeakAuras.maxTimerDuration) then
    Line 266: if (loop and options.sound_repeat and options.sound_repeat < WeakAuras.maxTimerDuration) then
    Line 267: self.soundRepeatTimer = WeakAuras.timer:ScheduleRepeatingTimer(SoundPlayHelper, options.sound_repeat, self);
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAuras\Types.lua (5 hits)
    Line 72: WeakAuras.sound_channel_types = {
    Line 80: WeakAuras.sound_condition_types = {
    Line 1584: WeakAuras.sound_types = {
    Line 1590: WeakAuras.sound_types[path] = name
    Line 1597: WeakAuras.sound_types[path] = key
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAuras\WeakAuras.lua (11 hits)
    Line 740: return string.format("{ sound = %q, sound_channel = %q, sound_path = %q, sound_kit_id = %q, sound_type = %q, %s}",
    Line 740: return string.format("{ sound = %q, sound_channel = %q, sound_path = %q, sound_kit_id = %q, sound_type = %q, %s}",
    Line 740: return string.format("{ sound = %q, sound_channel = %q, sound_path = %q, sound_kit_id = %q, sound_type = %q, %s}",
    Line 740: return string.format("{ sound = %q, sound_channel = %q, sound_path = %q, sound_kit_id = %q, sound_type = %q, %s}",
    Line 741: tostring(value.sound or ""), tostring(value.sound_channel or ""), tostring(value.sound_path or ""),
    Line 741: tostring(value.sound or ""), tostring(value.sound_channel or ""), tostring(value.sound_path or ""),
    Line 742: tostring(value.sound_kit_id or ""), tostring(value.sound_type or ""),
    Line 742: tostring(value.sound_kit_id or ""), tostring(value.sound_type or ""),
    Line 743: value.sound_repeat and "sound_repeat = " .. tostring(value.sound_repeat) or "nil");
    Line 743: value.sound_repeat and "sound_repeat = " .. tostring(value.sound_repeat) or "nil");
    Line 743: value.sound_repeat and "sound_repeat = " .. tostring(value.sound_repeat) or "nil");
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAurasOptions\ActionOptions.lua (18 hits)
    Line 7: local sound_types = WeakAuras.sound_types;
    Line 7: local sound_types = WeakAuras.sound_types;
    Line 59: if(value == "sound" or value == "sound_path") then
    Line 61: elseif(value == "sound_kit_id") then
    Line 169: start_sound_repeat = {
    Line 177: start_sound_repeat_space = {
    Line 189: values = sound_types,
    Line 193: start_sound_channel = {
    Line 198: values = WeakAuras.sound_channel_types,
    Line 200: get = function() return data.actions.start.sound_channel or "Master" end
    Line 202: start_sound_path = {
    Line 210: start_sound_kit_id = {
    Line 379: values = sound_types,
    Line 383: finish_sound_channel = {
    Line 388: values = WeakAuras.sound_channel_types,
    Line 390: get = function() return data.actions.finish.sound_channel or "Master" end
    Line 392: finish_sound_path = {
    Line 400: finish_sound_kit_id = {
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WeakAurasOptions\ConditionOptions.lua (46 hits)
    Line 443: args["condition" .. i .. "value" .. j .. "sound_type"] = {
    Line 446: values = WeakAuras.sound_condition_types,
    Line 447: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_type", L["Differences"]),
    Line 448: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_type", propertyType, WeakAuras.sound_condition_types),
    Line 448: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_type", propertyType, WeakAuras.sound_condition_types),
    Line 451: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_type;
    Line 453: set = setValueComplex("sound_type"),
    Line 458: local sound_type = type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_type;
    Line 458: local sound_type = type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_type;
    Line 459: if (sound_type) then
    Line 460: return sound_type == needle;
    Line 464: if (type(reference.value) == "table" and reference.value.sound_type == needle) then
    Line 475: values = WeakAuras.sound_types,
    Line 477: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound", propertyType, WeakAuras.sound_types),
    Line 488: args["condition" .. i .. "value" .. j .. "sound_channel"] = {
    Line 491: values = WeakAuras.sound_channel_types,
    Line 492: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_channel", L["Sound Channel"], L["Sound Channel"]),
    Line 493: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_channel", propertyType, WeakAuras.sound_channel_types),
    Line 493: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_channel", propertyType, WeakAuras.sound_channel_types),
    Line 496: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_channel;
    Line 498: set = setValueComplex("sound_channel"),
    Line 503: args["condition" .. i .. "value" .. j .. "sound_repeat"] = {
    Line 509: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_repeat", L["Repeat every"], L["Repeat every"]),
    Line 510: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_repeat", propertyType),
    Line 513: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_repeat;
    Line 515: set = setValueComplex("sound_repeat"),
    Line 521: args["condition" .. i .. "value" .. j .. "sound_repeat_space"] = {
    Line 531: local sound_type = type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound;
    Line 532: if (sound_type) then
    Line 533: return sound_type == needle;
    Line 545: args["condition" .. i .. "value" .. j .. "sound_path"] = {
    Line 548: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_path", L["Sound File Path"], L["Sound File Path"]),
    Line 549: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_path", propertyType),
    Line 552: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_path;
    Line 554: set = wrapWithPlaySound(setValueComplex("sound_path")),
    Line 559: args["condition" .. i .. "value" .. j .. "sound_kit_id"] = {
    Line 562: name = blueIfNoValue2(data, conditions[i].changes[j], "value", "sound_kit_id", L["Sound Kit ID"], L["Sound Kit ID"]),
    Line 563: desc = descIfNoValue2(data, conditions[i].changes[j], "value", "sound_kit_id", propertyType),
    Line 566: return type(conditions[i].changes[j].value) == "table" and conditions[i].changes[j].value.sound_kit_id;
    Line 568: set = wrapWithPlaySound(setValueComplex("sound_kit_id")),
    Line 829: return samevalue.sound and samevalue.sound_type;
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    Line 1779: sound = { "sound", "sound_channel", "sound_path", "sound_kit_id", "sound_repeat", "sound_type"},
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\deDE.lua (2 hits)
    Line 134: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Immer abspielen, selbst wenn Soundeffekte deaktiviert sind"
    Line 135: L["S_RAREFINDER_SOUND_ENABLED"] = "Einen Ton für seltenen Gegner auf der Minikarte abspielen"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\enUS.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Play Even When Sound Effects Are Disabled"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "Play Sound for Rare on Minimap"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\esES.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Sonar Incluso Cuando los Efectos de Sonido Están Desactivados"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "Lanzar sonido por monstruo raro en minimapa"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\esMX.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Reproducir incluso cuando los efectos de sonido estén deshabilitados"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "Reproducir Sonido para Raro en el Minimapa"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\frFR.lua (2 hits)
    Line 142: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Émettre un son même si les effets sonores sont désactivés"
    Line 143: L["S_RAREFINDER_SOUND_ENABLED"] = "Émettre un son en cas d'élite sur la minicarte."
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\itIT.lua (2 hits)
    Line 186: --[[ L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = ""--]]
    Line 188: --[[ L["S_RAREFINDER_SOUND_ENABLED"] = ""--]]
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\koKR.lua (2 hits)
    Line 132: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "** 효과가 꺼져있어* 재*"
    Line 133: L["S_RAREFINDER_SOUND_ENABLED"] = "미니맵에 희귀 몬*터가 나타나면 ** 재*"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\ptBR.lua (2 hits)
    Line 152: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Reproduzir mesmo quando os efeitos sonoros estão desativados"
    Line 153: L["S_RAREFINDER_SOUND_ENABLED"] = "Reproduzir Som para Raros no Mini Mapa"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\ruRU.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "Со звуком, даже когда звуковые эффекты отключены"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "Воспроизведение звука для редких мобов на мини-карте"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\zhCN.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "音效已禁*时仍播放"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "迷你地图出现稀有时播放音效"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\locales\zhTW.lua (2 hits)
    Line 131: L["S_RAREFINDER_SOUND_ALWAYSPLAY"] = "停*音效時仍然要播放"
    Line 132: L["S_RAREFINDER_SOUND_ENABLED"] = "小地圖出現稀有怪時播放音效"
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_Core.lua (15 hits)
    Line 2740: if (WorldQuestTracker.db.profile.sound_enabled) then
    Line 4017: GameCooltip:AddLine (L["S_RAREFINDER_SOUND_ENABLED"], "", 2)
    Line 4026: if (WorldQuestTracker.db.profile.rarescan.playsound_volume == 1) then
    Line 4031: GameCooltip:AddMenu (2, options_on_click, "rarescan", "playsound_volume", 1)
    Line 4034: if (WorldQuestTracker.db.profile.rarescan.playsound_volume == 2) then
    Line 4039: GameCooltip:AddMenu (2, options_on_click, "rarescan", "playsound_volume", 2)
    Line 4042: if (WorldQuestTracker.db.profile.rarescan.playsound_volume == 3) then
    Line 4047: GameCooltip:AddMenu (2, options_on_click, "rarescan", "playsound_volume", 3)
    Line 4049: GameCooltip:AddLine (L["S_RAREFINDER_SOUND_ALWAYSPLAY"], "", 2)
    Line 4110: if (WorldQuestTracker.db.profile.sound_enabled) then
    Line 4115: GameCooltip:AddMenu (1, options_on_click, "sound_enabled", not WorldQuestTracker.db.profile.sound_enabled)
    Line 4115: GameCooltip:AddMenu (1, options_on_click, "sound_enabled", not WorldQuestTracker.db.profile.sound_enabled)
    Line 4442: if (WorldQuestTracker.db.profile.sound_enabled) then
    Line 4475: if (WorldQuestTracker.db.profile.sound_enabled) then
    Line 4497: if (WorldQuestTracker.db.profile.sound_enabled) then
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_FrameAPI.lua (1 hit)
    Line 720: if (WorldQuestTracker.db.profile.sound_enabled) then
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_Initialize.lua (3 hits)
    Line 120: playsound_volume = 2,
    Line 121: playsound_warnings = 0,
    Line 184: sound_enabled = true,
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_RareFinder.lua (4 hits)
    Line 911: PlaySoundFile ("Interface\\AddOns\\WorldQuestTracker\\media\\rare_found" .. WorldQuestTracker.db.profile.rarescan.playsound_volume .. ".ogg", WorldQuestTracker.db.profile.rarescan.use_master and "Master" or "SFX")
    Line 912: if (WorldQuestTracker.db.profile.rarescan.playsound_warnings < 3) then
    Line 913: WorldQuestTracker.db.profile.rarescan.playsound_warnings = WorldQuestTracker.db.profile.rarescan.playsound_warnings + 1
    Line 913: WorldQuestTracker.db.profile.rarescan.playsound_warnings = WorldQuestTracker.db.profile.rarescan.playsound_warnings + 1
    C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\WorldQuestTracker\WorldQuestTracker_WorldMap.lua (1 hit)
    Line 139: if (WorldQuestTracker.db.profile.sound_enabled) then

  4. #4
    It is BigWigs. Under the BossBlock plugin, uncheck "Disable sound effects". That option will enable sound at the end of an encounter regardless of what your setting was before. If you always have SFX disabled, don't bother with this BigWigs option. I'm also confused how that didn't turn up in your search.

    If anyone that can contribute to BigWigs reads this, you might want to consider making this option smarter, or at least disable it when the checkbox shows and SFX is already off.
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •