View Single Post
11/04/14, 06:46 PM   #3
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by merlight View Post
I want the pre-update-5 sound that played when you got enough ultimate for the skill, or switched to weapon bar with charged ultimate. Is there a way to get it? This new ringing is sooo annoying
ID of the sound is SOUNDS.ABILITY_ULTIMATE_READY and it is payed from local function that will be hard to modify. Easier way would be changing value of this ID to something different what you can find in SOUNDS table (use Wykkyd's Sound Preview).

Lua Code:
  1. SOUNDS.ABILITY_ULTIMATE_READY_BACKUP = SOUNDS.ABILITY_ULTIMATE_READY
  2. SOUNDS.ABILITY_ULTIMATE_READY = SOUNDS.NONE
  Reply With Quote