SavedInstances

SavedInstances

11M Downloads

13th Anniversary: World Bosses (kind of time-sensitive)

rdw-software opened this issue ยท 6 comments

commented

It was requested those bosses are added to SavedInstances - Link on Curse. Since they are available for a limited time only, this should probably be done sooner rather than later.

I don't have time to do this properly, but I've gathered the available quest IDs for another addon. They are regular daily quests, though the Dragons of Nightmare are on a rotation (presumably, that is), and it appears there is only one quest to check for all of them. I can't say more until I've seen the other bosses, but supposedly they'll all use the same quest and should simply be called "Dragon of Nightmare" or something like that.

Quest IDs so far (will edit in/confirm the remaining ones if someone wants to work on this):

47461 Kazzak
47464 Kazzak - Bonus roll
47462 Azuregos
47465 Azuregos - Bonus roll
47463 Dragon of Nightmare
47466 Dragon of Nightmare - Bonus roll

They should probably just be listed under "World Bosses".

commented

Would it look something like this?

local _specialQuests = {
-- WoW 13th Anniversary
[47461] = { zid=19, daily=true }, -- Kazzak
[47464] = { zid=19, daily=true }, -- Kazzak - Bonus roll
[47462] = { zid=181, daily=true }, -- Azuregos
[47465] = { zid=181, daily=true }, -- Azuregos - Bonus roll
[47463] = { zid=43, daily=true }, -- Dragon of Nightmare
[47466] = { zid=43, daily=true }, -- Dragon of Nightmare - Bonus roll
[47463] = { zid=34, daily=true }, -- Dragon of Nightmare
[47466] = { zid=34, daily=true }, -- Dragon of Nightmare - Bonus roll
[47463] = { zid=121, daily=true }, -- Dragon of Nightmare
[47466] = { zid=121, daily=true }, -- Dragon of Nightmare - Bonus roll
[47463] = { zid=26, daily=true }, -- Dragon of Nightmare
[47466] = { zid=26, daily=true }, -- Dragon of Nightmare - Bonus roll

commented

It seems to be showing up after killing Azuregos but if you mouse over the 1 in the daily quest category for that character you will get a Local (error).

SavedInstances\SavedInstances-@[email protected]:2137: attempt to index field 'Title' (a nil value) SavedInstances\SavedInstances-@[email protected]:2137: in function _OnEnter_func'
...rfaceRarity\Libs\LibQTip-1.0\LibQTip-1.0-44.lua:1233: in function <...rfaceRarity\Libs\LibQTip-1.0\LibQTip-1.0.lua:1227>

Locals:
cell = {
0 =
_paddingL = 0
_provider =

{
}
_font = GameTooltipText {
}
_OnEnter_arg =
{
}
_OnLeave_func = defined @SavedInstances\SavedInstances.lua:3723
_OnEnter_func = defined @SavedInstances\SavedInstances.lua:2103
_column = 2
_justification = "CENTER"
_paddingR = 0
_line = 4
_colSpan = 4
fontString = {
}
}`

commented

if I change line 2137 to

if Title and qi.Title:find("("..LOOT..")") then

I get this tooltip after killing Azuregos in Azshara, Kazzak in the Blasted Lands, and Ysondre in the Hinterlands.

13 Anniversary quest tooltip

a dump of the qi table which produces the above tooltip shows that qi.Title is nil for the 13th Anniverary dailies

commented

I removed the ones I added on here before and placed these under the addon.WorldBosses list so it looks like this. This work but it will say Unknown9002, Unknown9003, Unknown9004 for the daily bosses names. I can't seem to get them to show as the bosses real names even after using name=Kazzak. But this works for me till the even is over so yeah.

[1883] = { quest=46947, expansion=6, level=110 }, -- Brutallus
[1884] = { quest=46948, expansion=6, level=110 }, -- Malificus
[1885] = { quest=46945, expansion=6, level=110 }, -- Si'vash
[1956] = { quest=47061, expansion=6, level=110 }, -- Apocron
[9002] = { quest=47461, expansion=6, level=110}, -- Kazzak
[9003] = { quest=47462, expansion=6, level=110}, -- Azuregos
[9004] = { quest=47463, expansion=6, level=110}, -- Dragon of Nightmare

commented
-- 13th Anniversary Bosses
[9002] = { quest=47461, name="Kazzak", expansion=6, level=110}, -- Kazzak
[9003] = { quest=47462, name="Azuregos", expansion=6, level=110}, -- Azuregos
[9004] = { quest=47463, name="Dragon of Nightmare", expansion=6, level=110}, -- Dragon of Nightmare

commented