Update
This commit is contained in:
@@ -1,40 +1,40 @@
|
||||
--CLEU
|
||||
function(...)
|
||||
local se = select(3, ...)
|
||||
if se == "PARTY_KILL" then
|
||||
local name = select(10, ...)
|
||||
if aura_env.mobs[name] then
|
||||
Garbage.baqcrap.count = Garbage.baqcrap.count + aura_env.mobs[name]
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--DISPLAY
|
||||
function()
|
||||
return Garbage.baqcrap.count .. "%"
|
||||
end
|
||||
|
||||
--INIT
|
||||
if not Garbage.baqcrap then Garbage.baqcrap = {} end
|
||||
if not Garbage.baqcrap.count then Garbage.baqcrap.count = 0 end
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Tidemistress Ethendriss"] = 3,
|
||||
["Shirakess Starseeker"] = 1.2,
|
||||
["Azsh'ari Siegemistress"] = 0.9,
|
||||
["Shirakess Voidtwister"] = 0.7,
|
||||
["Shadowbinder Athissa"] = 0.6,
|
||||
["Azsh'ari Invoker"] = 0.5,
|
||||
["Shirakess Apprentice"] = 0.5,
|
||||
["Shirakess Overseer"] = 0.5,
|
||||
["Incantatrix Vazina"] = 0.5,
|
||||
["Lady Naz'jess"] = 0.5,
|
||||
["Herald of the Queen"] = 0.5,
|
||||
["Shirakess Apprentice"] = 0.4,
|
||||
["Azsh'ari Stormsurger"] = 0.3,
|
||||
["Azsh'ari Stormsurger"] = 0.3,
|
||||
["Theurgist Nitara"] = 0.2,
|
||||
["Azsh'ari Oracle"] = 0.13,
|
||||
["Tidebinder Sarjezi"] = 0.09,
|
||||
--CLEU
|
||||
function(...)
|
||||
local se = select(3, ...)
|
||||
if se == "PARTY_KILL" then
|
||||
local name = select(10, ...)
|
||||
if aura_env.mobs[name] then
|
||||
Garbage.baqcrap.count = Garbage.baqcrap.count + aura_env.mobs[name]
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--DISPLAY
|
||||
function()
|
||||
return Garbage.baqcrap.count .. "%"
|
||||
end
|
||||
|
||||
--INIT
|
||||
if not Garbage.baqcrap then Garbage.baqcrap = {} end
|
||||
if not Garbage.baqcrap.count then Garbage.baqcrap.count = 0 end
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Tidemistress Ethendriss"] = 3,
|
||||
["Shirakess Starseeker"] = 1.2,
|
||||
["Azsh'ari Siegemistress"] = 0.9,
|
||||
["Shirakess Voidtwister"] = 0.7,
|
||||
["Shadowbinder Athissa"] = 0.6,
|
||||
["Azsh'ari Invoker"] = 0.5,
|
||||
["Shirakess Apprentice"] = 0.5,
|
||||
["Shirakess Overseer"] = 0.5,
|
||||
["Incantatrix Vazina"] = 0.5,
|
||||
["Lady Naz'jess"] = 0.5,
|
||||
["Herald of the Queen"] = 0.5,
|
||||
["Shirakess Apprentice"] = 0.4,
|
||||
["Azsh'ari Stormsurger"] = 0.3,
|
||||
["Azsh'ari Stormsurger"] = 0.3,
|
||||
["Theurgist Nitara"] = 0.2,
|
||||
["Azsh'ari Oracle"] = 0.13,
|
||||
["Tidebinder Sarjezi"] = 0.09,
|
||||
}
|
||||
@@ -1,40 +1,40 @@
|
||||
--NAME_PLATE_UNIT_ADDED NAME_PLATE_UNIT_REMOVED
|
||||
function(e, unit)
|
||||
--handle death exception
|
||||
local LCG = LibStub("LibCustomGlow-1.0")
|
||||
if e == "NAME_PLATE_UNIT_ADDED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Start(nameplate, {1,1,1,1}, nil, 0, 8, 2, 0, -4)
|
||||
end
|
||||
elseif e == "NAME_PLATE_UNIT_REMOVED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Stop(nameplate)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--INIT
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Tidemistress Ethendriss"] = 3,
|
||||
["Shirakess Starseeker"] = 1.2,
|
||||
["Azsh'ari Siegemistress"] = 0.9,
|
||||
["Shirakess Voidtwister"] = 0.7,
|
||||
["Shadowbinder Athissa"] = 0.6,
|
||||
["Azsh'ari Invoker"] = 0.5,
|
||||
["Shirakess Apprentice"] = 0.5,
|
||||
["Shirakess Overseer"] = 0.5,
|
||||
["Incantatrix Vazina"] = 0.5,
|
||||
["Lady Naz'jess"] = 0.5,
|
||||
["Herald of the Queen"] = 0.5,
|
||||
["Shirakess Apprentice"] = 0.4,
|
||||
["Azsh'ari Stormsurger"] = 0.3,
|
||||
["Azsh'ari Stormsurger"] = 0.3,
|
||||
["Theurgist Nitara"] = 0.2,
|
||||
["Azsh'ari Oracle"] = 0.13,
|
||||
["Tidebinder Sarjezi"] = 0.09,
|
||||
--NAME_PLATE_UNIT_ADDED NAME_PLATE_UNIT_REMOVED
|
||||
function(e, unit)
|
||||
--handle death exception
|
||||
local LCG = LibStub("LibCustomGlow-1.0")
|
||||
if e == "NAME_PLATE_UNIT_ADDED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Start(nameplate, {1,1,1,1}, nil, 0, 8, 2, 0, -4)
|
||||
end
|
||||
elseif e == "NAME_PLATE_UNIT_REMOVED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Stop(nameplate)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--INIT
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Tidemistress Ethendriss"] = 3,
|
||||
["Shirakess Starseeker"] = 1.2,
|
||||
["Azsh'ari Siegemistress"] = 0.9,
|
||||
["Shirakess Voidtwister"] = 0.7,
|
||||
["Shadowbinder Athissa"] = 0.6,
|
||||
["Azsh'ari Invoker"] = 0.5,
|
||||
["Shirakess Apprentice"] = 0.5,
|
||||
["Shirakess Overseer"] = 0.5,
|
||||
["Incantatrix Vazina"] = 0.5,
|
||||
["Lady Naz'jess"] = 0.5,
|
||||
["Herald of the Queen"] = 0.5,
|
||||
["Shirakess Apprentice"] = 0.4,
|
||||
["Azsh'ari Stormsurger"] = 0.3,
|
||||
["Azsh'ari Stormsurger"] = 0.3,
|
||||
["Theurgist Nitara"] = 0.2,
|
||||
["Azsh'ari Oracle"] = 0.13,
|
||||
["Tidebinder Sarjezi"] = 0.09,
|
||||
}
|
||||
@@ -1,51 +1,51 @@
|
||||
--NAME_PLATE_UNIT_ADDED NAME_PLATE_UNIT_REMOVED
|
||||
function(e, unit)
|
||||
--handle death exception
|
||||
local LCG = LibStub("LibCustomGlow-1.0")
|
||||
if e == "NAME_PLATE_UNIT_ADDED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Start(nameplate, {0,1,0,1}, nil, 0, 8, 2, 0, -4)
|
||||
end
|
||||
elseif e == "NAME_PLATE_UNIT_REMOVED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Stop(nameplate)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--INIT
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Barnacled Reefwalker"] = 1.6,
|
||||
["Gloomchasm Reefwalker"] = 1.4,
|
||||
["Whitewave Reefwalker"] = 1.2,
|
||||
["Staghorn Reefwalker"] = 1.2,
|
||||
["Deep Reefwalker"] = 1.2,
|
||||
["Sunbleached Reefwalker"] = 1,
|
||||
["Kelpwillow"] = 1,
|
||||
["Anemonar"] = 0.9,
|
||||
["Seashelf Reefwalker"] = 0.8,
|
||||
["Murkbloom Reefwalker"] = 0.7,
|
||||
["Oronu"] = 0.6,
|
||||
["Urduu"] = 0.6,
|
||||
["Emorneth"] = 0.5,
|
||||
["Sandclaw Stoneshell"] = 6,
|
||||
["Chitterspine Ambusher"] = 0.8,
|
||||
["Chitterspine Crab"] = 0.5,
|
||||
["Chitterspine Lurker"] = 0.5,
|
||||
["Iridescent Glimmershell"] = 0.5,
|
||||
["Needlespine"] = 0.5,
|
||||
["Chitterspine Encroacher"] = 0.4,
|
||||
["Glimmershell Crab"] = 0.4,
|
||||
["Sandclaw Crab"] = 0.4,
|
||||
["Chitterspine Ambusher"] = 0.4,
|
||||
["Crackleclaw Crab"] = 0.3,
|
||||
["Glimmershell Hulk"] = 0.3,
|
||||
["Chitterspine Crab"] = 0.3,
|
||||
["Braxicus"] = 0.3,
|
||||
["Chitterspine Guillotine"] = 0.16,
|
||||
--NAME_PLATE_UNIT_ADDED NAME_PLATE_UNIT_REMOVED
|
||||
function(e, unit)
|
||||
--handle death exception
|
||||
local LCG = LibStub("LibCustomGlow-1.0")
|
||||
if e == "NAME_PLATE_UNIT_ADDED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Start(nameplate, {0,1,0,1}, nil, 0, 8, 2, 0, -4)
|
||||
end
|
||||
elseif e == "NAME_PLATE_UNIT_REMOVED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Stop(nameplate)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--INIT
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Barnacled Reefwalker"] = 1.6,
|
||||
["Gloomchasm Reefwalker"] = 1.4,
|
||||
["Whitewave Reefwalker"] = 1.2,
|
||||
["Staghorn Reefwalker"] = 1.2,
|
||||
["Deep Reefwalker"] = 1.2,
|
||||
["Sunbleached Reefwalker"] = 1,
|
||||
["Kelpwillow"] = 1,
|
||||
["Anemonar"] = 0.9,
|
||||
["Seashelf Reefwalker"] = 0.8,
|
||||
["Murkbloom Reefwalker"] = 0.7,
|
||||
["Oronu"] = 0.6,
|
||||
["Urduu"] = 0.6,
|
||||
["Emorneth"] = 0.5,
|
||||
["Sandclaw Stoneshell"] = 6,
|
||||
["Chitterspine Ambusher"] = 0.8,
|
||||
["Chitterspine Crab"] = 0.5,
|
||||
["Chitterspine Lurker"] = 0.5,
|
||||
["Iridescent Glimmershell"] = 0.5,
|
||||
["Needlespine"] = 0.5,
|
||||
["Chitterspine Encroacher"] = 0.4,
|
||||
["Glimmershell Crab"] = 0.4,
|
||||
["Sandclaw Crab"] = 0.4,
|
||||
["Chitterspine Ambusher"] = 0.4,
|
||||
["Crackleclaw Crab"] = 0.3,
|
||||
["Glimmershell Hulk"] = 0.3,
|
||||
["Chitterspine Crab"] = 0.3,
|
||||
["Braxicus"] = 0.3,
|
||||
["Chitterspine Guillotine"] = 0.16,
|
||||
}
|
||||
@@ -1,51 +1,51 @@
|
||||
--CLEU
|
||||
function(...)
|
||||
local se = select(3, ...)
|
||||
if se == "PARTY_KILL" then
|
||||
local name = select(10, ...)
|
||||
if aura_env.mobs[name] then
|
||||
Garbage.baqcrap.count3 = Garbage.baqcrap.count3 + aura_env.mobs[name]
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--DISPLAY
|
||||
function()
|
||||
return Garbage.baqcrap.count3 .. "%"
|
||||
end
|
||||
|
||||
--INIT
|
||||
if not Garbage.baqcrap then Garbage.baqcrap = {} end
|
||||
if not Garbage.baqcrap.count3 then Garbage.baqcrap.count3 = 0 end
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Barnacled Reefwalker"] = 1.6,
|
||||
["Gloomchasm Reefwalker"] = 1.4,
|
||||
["Whitewave Reefwalker"] = 1.2,
|
||||
["Staghorn Reefwalker"] = 1.2,
|
||||
["Deep Reefwalker"] = 1.2,
|
||||
["Sunbleached Reefwalker"] = 1,
|
||||
["Kelpwillow"] = 1,
|
||||
["Anemonar"] = 0.9,
|
||||
["Seashelf Reefwalker"] = 0.8,
|
||||
["Murkbloom Reefwalker"] = 0.7,
|
||||
["Oronu"] = 0.6,
|
||||
["Urduu"] = 0.6,
|
||||
["Emorneth"] = 0.5,
|
||||
["Sandclaw Stoneshell"] = 6,
|
||||
["Chitterspine Ambusher"] = 0.8,
|
||||
["Chitterspine Crab"] = 0.5,
|
||||
["Chitterspine Lurker"] = 0.5,
|
||||
["Iridescent Glimmershell"] = 0.5,
|
||||
["Needlespine"] = 0.5,
|
||||
["Chitterspine Encroacher"] = 0.4,
|
||||
["Glimmershell Crab"] = 0.4,
|
||||
["Sandclaw Crab"] = 0.4,
|
||||
["Chitterspine Ambusher"] = 0.4,
|
||||
["Crackleclaw Crab"] = 0.3,
|
||||
["Glimmershell Hulk"] = 0.3,
|
||||
["Chitterspine Crab"] = 0.3,
|
||||
["Braxicus"] = 0.3,
|
||||
["Chitterspine Guillotine"] = 0.16,
|
||||
--CLEU
|
||||
function(...)
|
||||
local se = select(3, ...)
|
||||
if se == "PARTY_KILL" then
|
||||
local name = select(10, ...)
|
||||
if aura_env.mobs[name] then
|
||||
Garbage.baqcrap.count3 = Garbage.baqcrap.count3 + aura_env.mobs[name]
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--DISPLAY
|
||||
function()
|
||||
return Garbage.baqcrap.count3 .. "%"
|
||||
end
|
||||
|
||||
--INIT
|
||||
if not Garbage.baqcrap then Garbage.baqcrap = {} end
|
||||
if not Garbage.baqcrap.count3 then Garbage.baqcrap.count3 = 0 end
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Barnacled Reefwalker"] = 1.6,
|
||||
["Gloomchasm Reefwalker"] = 1.4,
|
||||
["Whitewave Reefwalker"] = 1.2,
|
||||
["Staghorn Reefwalker"] = 1.2,
|
||||
["Deep Reefwalker"] = 1.2,
|
||||
["Sunbleached Reefwalker"] = 1,
|
||||
["Kelpwillow"] = 1,
|
||||
["Anemonar"] = 0.9,
|
||||
["Seashelf Reefwalker"] = 0.8,
|
||||
["Murkbloom Reefwalker"] = 0.7,
|
||||
["Oronu"] = 0.6,
|
||||
["Urduu"] = 0.6,
|
||||
["Emorneth"] = 0.5,
|
||||
["Sandclaw Stoneshell"] = 6,
|
||||
["Chitterspine Ambusher"] = 0.8,
|
||||
["Chitterspine Crab"] = 0.5,
|
||||
["Chitterspine Lurker"] = 0.5,
|
||||
["Iridescent Glimmershell"] = 0.5,
|
||||
["Needlespine"] = 0.5,
|
||||
["Chitterspine Encroacher"] = 0.4,
|
||||
["Glimmershell Crab"] = 0.4,
|
||||
["Sandclaw Crab"] = 0.4,
|
||||
["Chitterspine Ambusher"] = 0.4,
|
||||
["Crackleclaw Crab"] = 0.3,
|
||||
["Glimmershell Hulk"] = 0.3,
|
||||
["Chitterspine Crab"] = 0.3,
|
||||
["Braxicus"] = 0.3,
|
||||
["Chitterspine Guillotine"] = 0.16,
|
||||
}
|
||||
@@ -1,80 +1,80 @@
|
||||
--NAME_PLATE_UNIT_ADDED NAME_PLATE_UNIT_REMOVED
|
||||
function(e, unit)
|
||||
--handle death exception
|
||||
local LCG = LibStub("LibCustomGlow-1.0")
|
||||
if e == "NAME_PLATE_UNIT_ADDED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Start(nameplate, {0,0,1,1}, nil, 0, 8, 2, 0, -4)
|
||||
end
|
||||
elseif e == "NAME_PLATE_UNIT_REMOVED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Stop(nameplate)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--INIT
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Herald of Salgos"] = 33,
|
||||
["Spawn of Salgos"] = 33,
|
||||
["Osgen"] = 30,
|
||||
["Ungormath"] = 30,
|
||||
["Burning Amalgamation"] = 29,
|
||||
["Moghiea"] = 29,
|
||||
["Salgos the Eternal"] = 28,
|
||||
["Zomera"] = 27,
|
||||
["Arcane Amalgamation"] = 25,
|
||||
["Xue"] = 25,
|
||||
["Aldrantiss"] = 22,
|
||||
["Watery Amalgamation"] = 22,
|
||||
["Dusty Amalgamation"] = 22,
|
||||
["Alzana"] = 21,
|
||||
["Vyz'olgo the Mind-Taker"] = 20,
|
||||
["Qalina"] = 19,
|
||||
["Omus"] = 19,
|
||||
["Voice in the Deeps"] = 13,
|
||||
["King Gakula"] = 11,
|
||||
["Chasm-Haunter"] = 11,
|
||||
["Scale Matriarch Vynara"] = 11,
|
||||
["Anemonar"] = 10,
|
||||
["Sandcastle"] = 9,
|
||||
["Shiz'narasz the Consumer"] = 9,
|
||||
["Toxigore the Alpha"] = 9,
|
||||
["Needlespine"] = 9,
|
||||
["Siltstalker the Packmother"] = 9,
|
||||
["Urduu"] = 9,
|
||||
["Tidemistress Leth'sindra"] = 9,
|
||||
["Banescale the Packfather"] = 9,
|
||||
["Sandclaw Stoneshell"] = 8,
|
||||
["Garnetscale"] = 8,
|
||||
["Allseer Oma'kil"] = 8,
|
||||
["Vor'koth"] = 8,
|
||||
["Elder Unu"] = 8,
|
||||
["Caverndark Terror"] = 8,
|
||||
["Blindlight"] = 8,
|
||||
["Shassera"] = 8,
|
||||
["Soundless"] = 8,
|
||||
["Scale Matriarch Gratinax"] = 8,
|
||||
["Tidelord Aquatus"] = 8,
|
||||
["Tidelord Dispersius"] = 8,
|
||||
["Carnivorous Lasher"] = 7,
|
||||
["Mirecrawler"] = 7,
|
||||
["Daggertooth Terror"] = 7,
|
||||
["Amethyst Spireshell"] = 7,
|
||||
["Prince Typhonus"] = 7,
|
||||
["Alga the Eyeless"] = 7,
|
||||
["Prince Vortran"] = 7,
|
||||
["Kelpwillow"] = 7,
|
||||
["Deepglider"] = 7,
|
||||
["Scale Matriarch Zodia"] = 7,
|
||||
["Rockweed Shambler"] = 7,
|
||||
["Avarius"] = 6,
|
||||
["Iridescent Glimmershell"] = 6,
|
||||
["Oronu"] = 6,
|
||||
["Elderspawn Nalaada"] = 5,
|
||||
--NAME_PLATE_UNIT_ADDED NAME_PLATE_UNIT_REMOVED
|
||||
function(e, unit)
|
||||
--handle death exception
|
||||
local LCG = LibStub("LibCustomGlow-1.0")
|
||||
if e == "NAME_PLATE_UNIT_ADDED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Start(nameplate, {0,0,1,1}, nil, 0, 8, 2, 0, -4)
|
||||
end
|
||||
elseif e == "NAME_PLATE_UNIT_REMOVED" then
|
||||
local name = UnitName(unit) or ""
|
||||
if aura_env.mobs[name] then
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
LCG.PixelGlow_Stop(nameplate)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--INIT
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Herald of Salgos"] = 33,
|
||||
["Spawn of Salgos"] = 33,
|
||||
["Osgen"] = 30,
|
||||
["Ungormath"] = 30,
|
||||
["Burning Amalgamation"] = 29,
|
||||
["Moghiea"] = 29,
|
||||
["Salgos the Eternal"] = 28,
|
||||
["Zomera"] = 27,
|
||||
["Arcane Amalgamation"] = 25,
|
||||
["Xue"] = 25,
|
||||
["Aldrantiss"] = 22,
|
||||
["Watery Amalgamation"] = 22,
|
||||
["Dusty Amalgamation"] = 22,
|
||||
["Alzana"] = 21,
|
||||
["Vyz'olgo the Mind-Taker"] = 20,
|
||||
["Qalina"] = 19,
|
||||
["Omus"] = 19,
|
||||
["Voice in the Deeps"] = 13,
|
||||
["King Gakula"] = 11,
|
||||
["Chasm-Haunter"] = 11,
|
||||
["Scale Matriarch Vynara"] = 11,
|
||||
["Anemonar"] = 10,
|
||||
["Sandcastle"] = 9,
|
||||
["Shiz'narasz the Consumer"] = 9,
|
||||
["Toxigore the Alpha"] = 9,
|
||||
["Needlespine"] = 9,
|
||||
["Siltstalker the Packmother"] = 9,
|
||||
["Urduu"] = 9,
|
||||
["Tidemistress Leth'sindra"] = 9,
|
||||
["Banescale the Packfather"] = 9,
|
||||
["Sandclaw Stoneshell"] = 8,
|
||||
["Garnetscale"] = 8,
|
||||
["Allseer Oma'kil"] = 8,
|
||||
["Vor'koth"] = 8,
|
||||
["Elder Unu"] = 8,
|
||||
["Caverndark Terror"] = 8,
|
||||
["Blindlight"] = 8,
|
||||
["Shassera"] = 8,
|
||||
["Soundless"] = 8,
|
||||
["Scale Matriarch Gratinax"] = 8,
|
||||
["Tidelord Aquatus"] = 8,
|
||||
["Tidelord Dispersius"] = 8,
|
||||
["Carnivorous Lasher"] = 7,
|
||||
["Mirecrawler"] = 7,
|
||||
["Daggertooth Terror"] = 7,
|
||||
["Amethyst Spireshell"] = 7,
|
||||
["Prince Typhonus"] = 7,
|
||||
["Alga the Eyeless"] = 7,
|
||||
["Prince Vortran"] = 7,
|
||||
["Kelpwillow"] = 7,
|
||||
["Deepglider"] = 7,
|
||||
["Scale Matriarch Zodia"] = 7,
|
||||
["Rockweed Shambler"] = 7,
|
||||
["Avarius"] = 6,
|
||||
["Iridescent Glimmershell"] = 6,
|
||||
["Oronu"] = 6,
|
||||
["Elderspawn Nalaada"] = 5,
|
||||
}
|
||||
@@ -1,80 +1,80 @@
|
||||
--CLEU
|
||||
function(...)
|
||||
local se = select(3, ...)
|
||||
if se == "PARTY_KILL" then
|
||||
local name = select(10, ...)
|
||||
if aura_env.mobs[name] then
|
||||
Garbage.baqcrap.count2 = Garbage.baqcrap.count2 + aura_env.mobs[name]
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--DISPLAY
|
||||
function()
|
||||
return Garbage.baqcrap.count2 .. "%"
|
||||
end
|
||||
|
||||
--INIT
|
||||
if not Garbage.baqcrap then Garbage.baqcrap = {} end
|
||||
if not Garbage.baqcrap.count2 then Garbage.baqcrap.count2 = 0 end
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Herald of Salgos"] = 33,
|
||||
["Spawn of Salgos"] = 33,
|
||||
["Osgen"] = 30,
|
||||
["Ungormath"] = 30,
|
||||
["Burning Amalgamation"] = 29,
|
||||
["Moghiea"] = 29,
|
||||
["Salgos the Eternal"] = 28,
|
||||
["Zomera"] = 27,
|
||||
["Arcane Amalgamation"] = 25,
|
||||
["Xue"] = 25,
|
||||
["Aldrantiss"] = 22,
|
||||
["Watery Amalgamation"] = 22,
|
||||
["Dusty Amalgamation"] = 22,
|
||||
["Alzana"] = 21,
|
||||
["Vyz'olgo the Mind-Taker"] = 20,
|
||||
["Qalina"] = 19,
|
||||
["Omus"] = 19,
|
||||
["Voice in the Deeps"] = 13,
|
||||
["King Gakula"] = 11,
|
||||
["Chasm-Haunter"] = 11,
|
||||
["Scale Matriarch Vynara"] = 11,
|
||||
["Anemonar"] = 10,
|
||||
["Sandcastle"] = 9,
|
||||
["Shiz'narasz the Consumer"] = 9,
|
||||
["Toxigore the Alpha"] = 9,
|
||||
["Needlespine"] = 9,
|
||||
["Siltstalker the Packmother"] = 9,
|
||||
["Urduu"] = 9,
|
||||
["Tidemistress Leth'sindra"] = 9,
|
||||
["Banescale the Packfather"] = 9,
|
||||
["Sandclaw Stoneshell"] = 8,
|
||||
["Garnetscale"] = 8,
|
||||
["Allseer Oma'kil"] = 8,
|
||||
["Vor'koth"] = 8,
|
||||
["Elder Unu"] = 8,
|
||||
["Caverndark Terror"] = 8,
|
||||
["Blindlight"] = 8,
|
||||
["Shassera"] = 8,
|
||||
["Soundless"] = 8,
|
||||
["Scale Matriarch Gratinax"] = 8,
|
||||
["Tidelord Aquatus"] = 8,
|
||||
["Tidelord Dispersius"] = 8,
|
||||
["Carnivorous Lasher"] = 7,
|
||||
["Mirecrawler"] = 7,
|
||||
["Daggertooth Terror"] = 7,
|
||||
["Amethyst Spireshell"] = 7,
|
||||
["Prince Typhonus"] = 7,
|
||||
["Alga the Eyeless"] = 7,
|
||||
["Prince Vortran"] = 7,
|
||||
["Kelpwillow"] = 7,
|
||||
["Deepglider"] = 7,
|
||||
["Scale Matriarch Zodia"] = 7,
|
||||
["Rockweed Shambler"] = 7,
|
||||
["Avarius"] = 6,
|
||||
["Iridescent Glimmershell"] = 6,
|
||||
["Oronu"] = 6,
|
||||
["Elderspawn Nalaada"] = 5,
|
||||
--CLEU
|
||||
function(...)
|
||||
local se = select(3, ...)
|
||||
if se == "PARTY_KILL" then
|
||||
local name = select(10, ...)
|
||||
if aura_env.mobs[name] then
|
||||
Garbage.baqcrap.count2 = Garbage.baqcrap.count2 + aura_env.mobs[name]
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--DISPLAY
|
||||
function()
|
||||
return Garbage.baqcrap.count2 .. "%"
|
||||
end
|
||||
|
||||
--INIT
|
||||
if not Garbage.baqcrap then Garbage.baqcrap = {} end
|
||||
if not Garbage.baqcrap.count2 then Garbage.baqcrap.count2 = 0 end
|
||||
aura_env.mobs =
|
||||
{
|
||||
["Herald of Salgos"] = 33,
|
||||
["Spawn of Salgos"] = 33,
|
||||
["Osgen"] = 30,
|
||||
["Ungormath"] = 30,
|
||||
["Burning Amalgamation"] = 29,
|
||||
["Moghiea"] = 29,
|
||||
["Salgos the Eternal"] = 28,
|
||||
["Zomera"] = 27,
|
||||
["Arcane Amalgamation"] = 25,
|
||||
["Xue"] = 25,
|
||||
["Aldrantiss"] = 22,
|
||||
["Watery Amalgamation"] = 22,
|
||||
["Dusty Amalgamation"] = 22,
|
||||
["Alzana"] = 21,
|
||||
["Vyz'olgo the Mind-Taker"] = 20,
|
||||
["Qalina"] = 19,
|
||||
["Omus"] = 19,
|
||||
["Voice in the Deeps"] = 13,
|
||||
["King Gakula"] = 11,
|
||||
["Chasm-Haunter"] = 11,
|
||||
["Scale Matriarch Vynara"] = 11,
|
||||
["Anemonar"] = 10,
|
||||
["Sandcastle"] = 9,
|
||||
["Shiz'narasz the Consumer"] = 9,
|
||||
["Toxigore the Alpha"] = 9,
|
||||
["Needlespine"] = 9,
|
||||
["Siltstalker the Packmother"] = 9,
|
||||
["Urduu"] = 9,
|
||||
["Tidemistress Leth'sindra"] = 9,
|
||||
["Banescale the Packfather"] = 9,
|
||||
["Sandclaw Stoneshell"] = 8,
|
||||
["Garnetscale"] = 8,
|
||||
["Allseer Oma'kil"] = 8,
|
||||
["Vor'koth"] = 8,
|
||||
["Elder Unu"] = 8,
|
||||
["Caverndark Terror"] = 8,
|
||||
["Blindlight"] = 8,
|
||||
["Shassera"] = 8,
|
||||
["Soundless"] = 8,
|
||||
["Scale Matriarch Gratinax"] = 8,
|
||||
["Tidelord Aquatus"] = 8,
|
||||
["Tidelord Dispersius"] = 8,
|
||||
["Carnivorous Lasher"] = 7,
|
||||
["Mirecrawler"] = 7,
|
||||
["Daggertooth Terror"] = 7,
|
||||
["Amethyst Spireshell"] = 7,
|
||||
["Prince Typhonus"] = 7,
|
||||
["Alga the Eyeless"] = 7,
|
||||
["Prince Vortran"] = 7,
|
||||
["Kelpwillow"] = 7,
|
||||
["Deepglider"] = 7,
|
||||
["Scale Matriarch Zodia"] = 7,
|
||||
["Rockweed Shambler"] = 7,
|
||||
["Avarius"] = 6,
|
||||
["Iridescent Glimmershell"] = 6,
|
||||
["Oronu"] = 6,
|
||||
["Elderspawn Nalaada"] = 5,
|
||||
}
|
||||
Reference in New Issue
Block a user