Chore Tracker

Chore Tracker

9.5k Downloads

Missing/Changed Tasks in TWW

Closed this issue ยท 6 comments

commented

There's a few changes in available weekly quests.

New ones that are missing are a Ringing Deeps weekly, "Rollin Down in the Deeps" (quest=82946), the Sparks of War quests (equivalent to DF Sparks of Life), listed here, and the "Special Assignment" weeklies unlocked after doing 3 WQs in a zone, such as "Special Assignment: Rise of the Colossals" (there seems to be two quests for these, one for unlocking and one for completing). There's also "The Key to Success" (quest=84370) obtained after finding an Archaic Cipher Key, though this last one doesn't seem to be active yet (Season 1 start, maybe).

There's also some existing quests that have been deactivated: Pandaria Remix event, Radiant Echoes event, DF Last Hurrah, DF Aiding the Accord, and DF Sparks of Life.

Edit: It'd also be good to add a timer for Beledar's Shadow, as that's the only time the rare elite Beledar's Spawn can... spawn. It goes dark for 30 minutes every 3 hours, with the first time being 1 hour after daily reset (according to this Wowhead comment).

Edit2: This code seems to work for Beledar's Shadow, the Ringing Deeps weekly, and the Warmode quests:

                {
                    key = 'rollinDownInTheDeeps',
                    minimumLevel = 80,
                    entries = {
                        { quest = 82946 }, -- Rollin' Down in the Deeps
                    }
                },
                {
                    key = 'sparksOfWar',
                    entries = {
                        { quest = 81793 }, -- Sparks of War: Isle of Dorn
                        { quest = 81794 }, -- Sparks of War: The Ringing Deeps
                        { quest = 81795 }, -- Sparks of War: Hallowfall
                        { quest = 81796 }, -- Sparks of War: Azj-Kahet
                    },
                },
        {
            key = 'beledarsShadow',
            minimumLevel = 70,
            interval = 3 * 60 * 60,
            duration = 30 * 60,
            offset = 60 * 60,
        },
commented

Thanks, mostly added in v11.0.2.6 (not Special Assignments or the key thing)

commented

84084 is (so far the only) weekly gathering quest for Enchanting (it's treated like herb/mine/skin atm)
82678 is currently the "Worldsoul weekly" (instead of choosing 1 of 4)

commented

82678 is currently the "Worldsoul weekly" (instead of choosing 1 of 4)

Yeah, seems like the Archives quests might be alternating with the Worldsoul quests? not sure how the addon can show that automatically, especially since it seems like the Archives quests might have some kind of progression

commented

Additional ones not yet implemented:

2 weekly PvP honor "preserving" quests:
80184 Preserving in Battle
80185 Preserving Solo
80186 Preserving in War
80187 Preserving in Skirmishes
80188 Preserving in Arenas
80189 Preserving Teamwork

commented

The following seems to add the queued PvP quests properly:

                {
                    key = 'pvpHonor',
                    minimumLevel = 80,
                    pick = 2,
                    alwaysShowObjectives = true,
                    entries = {
                        { quest = 80184 }, -- Preserving in Battle
                        { quest = 80185 }, -- Preserving Solo
                        { quest = 80186 }, -- Preserving in War
                        { quest = 80187 }, -- Preserving in Skirmishes
                        { quest = 80188 }, -- Preserving in Arenas
                        { quest = 80189 }, -- Preserving in Teamwork
                    },
                },

English localization addition:

L['chore:warWithin:patch_11_0_0:quests:pvpHonor'] = 'Honor'
commented

Added the Preserving quests in v11.0.2.19.