View Single Post
12-01-15, 08:26 AM   #4
semlar
A Pyroguard Emberseer
 
semlar's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 1,060
From your description it sounds like you're actually running an addon that's turning your sound volume up specifically for the queue, try disabling all of your addons and see if it's still too loud for you.

You can see here what the interface is executing when the dungeon queue pops, there's nothing that should make it louder than the /run command I posted.

If you're still interested in the physical path to the sound file it's "sound/interface/levelup2.ogg"

You can also try turning this into an addon, it may or may not work to mute the sound effect.
Lua Code:
  1. local RestoreSound = function() SetCVar('Sound_EnableSFX', '1') end
  2. hooksecurefunc('LFGDungeonReadyStatus_ResetReadyStates', function()
  3.     if GetCVar('Sound_EnableSFX') == '1' then
  4.         SetCVar('Sound_EnableSFX', '0')
  5.         C_Timer.After(0, RestoreSound)
  6.     end
  7. end)

Last edited by semlar : 12-01-15 at 09:08 AM.
  Reply With Quote