View Single Post
10-08-11, 03:25 PM   #7
Shmii
A Deviate Faerie Dragon
AddOn Author - Click to view addons
Join Date: Dec 2008
Posts: 13
I've tried that. It doesn't work, like I've already said.

Has anyone been able to get this to work with the glyphed bleed from Hemorrhage? Right now, EventHorizon is using the 60s debuff from the 30% bleed debuff, rather than the glyph bleed itself; so the bar lasts 60s instead of 24s. They share the same spell name (but different ID) so I assume there's a conditional that uses the name rather than the spell ID somewhere, I just haven't nailed down where.

For Reference:
Glyphed bleed spell ID - 89775
30% bleed damage debuff - 16511

So I should be able to use
Code:
self:NewSpell({
	spellID = 89775,
	dot = 2,
	numhits = 12,
	debuff = true,
	refreshable = true,
	requiredTree = 3,
})

EDIT: Looks like the bars are stored by SpellName, and not SpellID. Seems like a bit of a design issue and I'm not sure how I could fix it easily.
That's what I wrote on the comments section of the addon. I've tried to make it work, but it isn't.
  Reply With Quote