BigWigs Boss Mods (BW) - DBM alternative

BigWigs Boss Mods (BW) - DBM alternative

133M Downloads

[Feature Request] Improve sound options

p3lim opened this issue ยท 4 comments

commented

Maybe more of a question than an issue,

On each ability we can customize how and if an ability should be displayed, along with colors and sound customization.
Within the sound tab we have 6 different dropdowns, none of which are really descriptive on when they are played.

This could possibly be improved, I don't know, but to me it's is confusing, and the only one that really makes sense is the last one (Countdown), because it has a direct named link with the Countdown option.

commented

Closed by #423

commented

Is there a way to look up currently, which sound is being triggered by the specific ability?

commented

Only by looking at the module itself.

For example to look up the sound for Armageddon on Kil'jaeden:

  1. Open the module
  2. Find the method that's called when he casts the spell:
    self:Log("SPELL_CAST_START", "Armageddon", 240910)
  3. Go to that method:
    function mod:Armageddon(args)
  4. See which sound the message uses ("Warning" in this example):
    self:Message(args.spellId, "Important", "Warning", CL.count:format(args.spellName, armageddonCount))
commented

Cool, so pretty much have to find the line like in the 2nd link, thanks.