View Single Post
05-11-09, 03:45 PM   #3
sigg
Featured Artist
 
sigg's Avatar
Featured
Join Date: Aug 2008
Posts: 1,251
[6] = "-Debuff", [9] = "+Buff", [10] = "-Buff",

Step 1 : Omniscience must raise these three events for the bossmod :
File RDX\Omniscience\Log.lua
Line 254

if ((y == 1) or (y == 5) or (y == 6) or (y == 9) or (y == 10) or (y == 17) or (y == 18) or (y == 21) or (y == 22) or (y == 23)) then

Step 2 : Bossmod, add new rowtype
File RDX\Bossmods\Bossmod_Events.lua
Line 112

local _rowtypes = {
{ text = "DamageIn"},
{ text = "+Buff"},
{ text = "-Buff"},
{ text = "+Debuff"},
{ text = "-Debuff"},

{ text = "Killing Blow"},
{ text = "Death"},
{ text = "CastMob"},
{ text = "CastMobSuccess"},
{ text = "+BuffMob"},
};

Sigg
  Reply With Quote