Skip to content

Commit

Permalink
V2025.01.31.A
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludovicus-Maior committed Jan 31, 2025
2 parents 6013c61 + 4b900c1 commit 101d88e
Show file tree
Hide file tree
Showing 30 changed files with 468 additions and 215 deletions.
19 changes: 19 additions & 0 deletions Notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# Release 2025.01.31.A
## Bug Fixes
* Furydin: Don't blow up during debug logging if there's no QID!
* Spoony: Add /wp disable-addons and /wp enable-addons for taint debugging
* Furydin: Add locale dependent Category to .toc's
* Furydin: Switch to client independent GetItemInfo
* Ludo: Update Vanilla Interface to 1.15.6
## Guide Updates
* Retail Achievements: Added Felcycle mount
* Vanilla Leveling Alliance: Alliance 25-30, 30-41, 42-50
* Vanilla Leveling Horde: Hendo Chapter 2 (31-40).
* Vanilla Profession: Leatherworking
* Cata Leveling Alliance: Thousand Needles
* Cata Leveling Horde: Shadowmoon
* Retail Leveling Neutral: Azj-Kahet, , Fate of the Kirin Tor, Hallowfall, TWW Intro, Siren Isle, TRD
* Retail World Events: TWW Lunar Festival


# Release 2024.12.31.A
## Bug Fixes
* Hendo: Debug mode glitch in GetQuestInfo()
Expand All @@ -10,6 +28,7 @@
* Cata Leveling Alliance: Blasted Lands, Swamp of Sorrows, Dwarf/Gnome Intro
* Retail Leveling Alliance: Hinterlands, Loch Modan, Western Plaguelands, Wetlands
* Retail Leveling Neutral: Eastern Plaguelands, Azj-Kahet, Fate of the Kirin Tor, Hallowfall, TWW Max Campaign, Siren Isle, TRD
* Retail World Events: Guest Relations


# Release 2024.12.18.A
Expand Down
1 change: 1 addition & 0 deletions WoWPro/WoWPro.lua
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ function WoWPro:OnInitialize()
WoWProDB.global.Achievements = WoWProDB.global.Achievements or {}
WoWProDB.global.NpcFauxQuests = WoWProDB.global.NpcFauxQuests or {}
WoWProDB.global.QuestEngineDelay = WoWProDB.global.QuestEngineDelay or 0.25
WoWProCharDB.disabledAddons = WoWProCharDB.disabledAddons or {}

WoWProCharDB.EnableGrail = nil
if WoWProCharDB.AutoSelect == nil then
Expand Down
12 changes: 12 additions & 0 deletions WoWPro/WoWPro.toc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@
## SavedVariablesPerCharacter: WoWProCharDB
## OptionalDeps: Carbonite, TomTom
## Version: 2025.01.31.A
## Category-enUS: Quests
## Category-deDE: Quests
## Category-esES: Misiones
## Category-esMX: Misiones
## Category-frFR: Quêtes
## Category-itIT: Missioni
## Category-koKR: 퀘스트
## Category-ptBR: Missões
## Category-ruRU: Задания
## Category-zhCN: 任务
## Category-zhTW: 任務
>>>>>>> 4b900c1c6cae470c0d9cf9da6c18e8b2def3e430
## X-Category: Compilations
## X-License: Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
Libraries\LibStub\LibStub.lua
Expand Down
39 changes: 38 additions & 1 deletion WoWPro/WoWPro_Command.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- luacheck: globals date pairs ipairs type issecurevariable print
-- luacheck: globals tostring tinsert
-- luacheck: globals tostring tinsert table

_G.SLASH_WOWPRO1 = "/wp"
_G.SLASH_WOWPRO2 = "/wow-pro"
Expand Down Expand Up @@ -122,6 +122,43 @@ local function handler(msg, editbox)
end
end
_G.ChatFrame1:AddMessage("Blizzard API stored in: <World of Warcraft>/WTF/Account/<#>/SavedVariables/WoWPro.lua")
elseif ltoken == "disable-addons" then
local keepEnabled = {
"WoWPro",
"WoWPro_Leveling",
"BugSack",
"!BugGrabber",
"TomTom",
}

WoWProCharDB.disabledAddons = {}

local function isAddonKept(name)
for _, addon in ipairs(keepEnabled) do
if name == addon then
return true
end
end
return false
end

for i = 1, _G.C_AddOns.GetNumAddOns() do
local name, _, _, enabled = _G.C_AddOns.GetAddOnInfo(i)
if enabled and not isAddonKept(name) then
_G.C_AddOns.DisableAddOn(name)
table.insert(WoWProCharDB.disabledAddons, name)
end
end
_G.ReloadUI()

elseif ltoken == "enable-addons" then
if WoWProCharDB.disabledAddons then
for _, name in ipairs(WoWProCharDB.disabledAddons) do
_G.C_AddOns.EnableAddOn(name)
end
WoWProCharDB.disabledAddons = {}
_G.ReloadUI()
end
else
local text = ("%s or %s [where¦reset¦guide-bug¦taint¦etrace-start¦etrace-end¦clear-log¦log¦api-probe¦devcoords¦devmode]"):format(_G.SLASH_WOWPRO1, _G.SLASH_WOWPRO2)
_G.ChatFrame1:AddMessage(text)
Expand Down
2 changes: 1 addition & 1 deletion WoWPro/WoWPro_Parser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function WoWPro.GetQuestIconOffer(QID)
local quest_info = WoWPro.GetQuestInfo(QID)
if not quest_info then
local result = WoWPro.OfferIcons["default"]
if GetQuestInfoDebug then WoWPro:dbp("GetQuestIconOffer(%s): NIL default=%s", QID, result); end
if GetQuestInfoDebug then WoWPro:dbp("GetQuestIconOffer(%s): NIL default=%s", QID or "No Quest ID", result); end
return result, "Ordinary"
end
for flag, icon in pairs(WoWPro.OfferIcons) do
Expand Down
2 changes: 1 addition & 1 deletion WoWPro/WoWPro_Vanilla.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 11505
## Interface: 11506
## Title: |cffFF9900WoW-|r|cff46921APro|r
## Notes: Guides created by the WoW-Pro Community. |cffFF0000You will need either TomTom or Carbonite installed for full functionality.|r
## Author: Jiyambi,Ludovicus
Expand Down
160 changes: 160 additions & 0 deletions WoWPro_Achievements/Mounts/Emm_Felcycle.lua

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions WoWPro_Achievements/Mounts/Guides.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/">
<Script file="Emm_Felcycle.lua"/>
<Script file="Emm_Blanchy.lua"/>
<Script file="Emmaleah_Hippogryph.lua"/>
<Script file="Elidion_Hivemind.lua"/>
Expand Down
2 changes: 1 addition & 1 deletion WoWPro_Achievements/WoWPro_Achievements_Vanilla.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 11505
## Interface: 11506
## Title: |cffFF9900WoW-|r|cff46921APro|r Achievements
## Notes: World Achievements guides created by the WoW-Pro Community
## Author: Twists
Expand Down
2 changes: 1 addition & 1 deletion WoWPro_Dailies/WoWPro_Dailies_Vanilla.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 11505
## Interface: 11506
## Title: |cffFF9900WoW-|r|cff46921APro|r Dailies
## Notes: Daily quest guides created by the WoW-Pro Community
## Author: Jiyambi
Expand Down
4 changes: 2 additions & 2 deletions WoWPro_Leveling/Cata/Alliance/CATA_Thousand_Needles.lua
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ T Behind You!|QID|28136|M|30.47,49.27|Z|1441; Thousand Needles|N|To Lakota Winds
A The Elder Crone|QID|28140|PRE|28136&28139|M|30.47,49.27|Z|1441; Thousand Needles|N|From Lakota Windsong.|
U Bulwark Disguise|ACTIVE|28140|QO|1|M|PLAYER|CC|N|Use the Bulwark Disguise so everyone becomes friendly towards you.|U|63071|BUFF|88796|
C The Elder Crone|QID|28140|M|35.88,60.64|Z|1441; Thousand Needles|N|Click on Magatha's Bonds Contoller to disable it.|U|63071|NC|
R Exit Twilight Bulwark|ACTIVE|28140|M|40.33,61.11|CC|Z|1441; Thousand Needles|N|Seeing as you're about to lose your disguise, you might as well use it to get of there with no effort.|U|63071|FLY|OLD|
T The Elder Crone|QID|28140|M|PLAYER|CC|N|(UI ALert)\n[color=FF0000]NOTE: [/color]You'll lose your disguise upon turning this quest in.|
R Exit Twilight Bulwark|ACTIVE|28140|M|40.33,61.11|CC|Z|1441; Thousand Needles|N|Seeing as you're about to lose your disguise, you might as well use it to get out of there with no effort.|U|63071|FLY|OLD|
T The Elder Crone|QID|28140|M|PLAYER|CC|N|(UI ALert)\n[color=FF0000]NOTE: [/color]You'll lose your disguise when you turn this quest in.|NA|
A To the Withering|QID|28142|PRE|28140|M|PLAYER|CC|N|(UI Alert)|
T To the Withering|QID|28142|M|50.16,62.58|Z|1441; Thousand Needles|N|To Magatha Grimtotem.|
A Four Twilight Elements|QID|28157|PRE|28142|M|50.16,62.58|Z|1441; Thousand Needles|N|From Magatha Grimtotem.|
Expand Down
6 changes: 3 additions & 3 deletions WoWPro_Leveling/Cata/Horde/BC_Shadowmoon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ C Besieged!|QID|10595|M|31.03,34.36|N|Kill 10 Infernal Attackers.|
T Besieged!|QID|10595|M|30.46,32.49|N|To Blood Guard Gulmok.|
A To Legion Hold|QID|10596|PRE|10595|M|30.39,32.50|N|From Blood Guard Gulmok.|
A Wanted: Uvuros, Scourge of Shadowmoon|QID|10647|M|30.45,30.91|N|From the Wanted Poster.|
A The Sketh'lon Wreckage|QID|10760|PRE|10569|M|31.00,29.87|N|From Sergeant Kargrul.|
A The Sketh'lon Wreckage|QID|10760|M|31.00,29.87|N|From Sergeant Kargrul.|
f Shadowmoon Village|QID|10760|M|30.32,29.14|N|At Drek'Gol.|
A What Strange Creatures...|QID|10660|M|30.00,28.35|N|From Researcher Tiorus.|
A A Haunted History|QID|10624|PRE|11046|M|29.91,27.71|N|From Chief Apothecary Hildagard.|
Expand All @@ -27,7 +27,7 @@ C The Sketh'lon Wreckage|QID|10760|M|36.6,30.76|N|Kill Dark Conclave Arakkoas un
T To Legion Hold|QID|10596|M|30.48,32.47|N|To Blood Guard Gulmok.|
A Setting Up the Bomb|QID|10597|PRE|10596|M|30.48,32.47|N|From Blood Guard Gulmok.|
T The Sketh'lon Wreckage|QID|10760|M|30.99,29.86|N|To Sergeant Kargrul.|
A Find the Deserter|QID|10761|PRE|10759|M|30.99,29.86|N|From Sergeant Kargrul.|
A Find the Deserter|QID|10761|PRE|10760|M|30.99,29.86|N|From Sergeant Kargrul.|
T What Strange Creatures...|QID|10660|M|30.06,28.37|N|To Researcher Tiorus.|
A Frankly, It Makes No Sense...|QID|10672|PRE|10660|M|29.92,28.28|N|From Researcher Tiorus.|
T A Haunted History|QID|10624|M|29.91,27.75|N|To Chief Apothecary Hildagard.|
Expand All @@ -40,7 +40,7 @@ K Overseer Ripsaw|QID|10623|L|30579|T|Overseer Ripsaw|N|Find and kill Overseer R
A Illidari-Bane Shard|QID|10623|U|30759|M|22.49,35.97|N|Accept the quest from the shard.|
C Setting Up the Bomb|QID|10597|QO|1|M|26.29,41.26|N|Head down into the water and loot the Fel Reaver Power Core from the bottom of the pond.|
T Find the Deserter|QID|10761|M|35.19,40.35|N|To Parshah. He wanders up and down the path where the waypoint is.|
A Asghar's Totem|QID|10777|PRE|10759^10761|M|35.19,40.35|N|From Parshah. He wanders up and down the path where the waypoint is.|
A Asghar's Totem|QID|10777|PRE|10761|M|35.19,40.35|N|From Parshah. He wanders up and down the path where the waypoint is.|
C Asghar's Totem|QID|10777|M|39.94,29.36|N|Kill and loot Ashgar to get the Sketh'lon War Totem.|
T Setting Up the Bomb|QID|10597|M|30.45,32.44|N|To Blood Guard Gulmok.|
A Blast the Infernals!|QID|10598|PRE|10597|M|30.43,32.56|N|From Blood Guard Gulmok.|
Expand Down
8 changes: 4 additions & 4 deletions WoWPro_Leveling/Retail/Neutral/TWW_AzjKahet.lua
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,11 @@ C Grand Overspinner Antourix.|QID|83616|M|75.73,52.50|Z|Azj-Kahet|CHAT|N|Grand O
T The Entrenched|QID|83616|M|75.73,52.50|Z|2255;Azj-Kahet|N|To Grand Overspinner Antourix.|
A Spring Collection|QID|81683|M|75.73,52.50|Z|2255;Azj-Kahet|N|From Grand Overspinner Antourix.|RANK|2|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|1|N|Kill mobs down on the cavern floor (not the platform) to collect 12 Reclaimed Catalyst.|S|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|2|H|L|224285|N|Harvest Luminous Strangler Sap.|S|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|3|H|L|224284|N|Harvest Eyeless Petals.|S|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|2|H|N|Harvest Luminous Strangler Sap.|S|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|3|H|N|Harvest Eyeless Petals.|S|
C Spring Collection|QID|81683|M|70.61,42.03|Z|2255;Azj-Kahet|QO|4|N|Kill and loot Cochineal Crawlers. They are neutral level 1 critters.|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|3|H|L|224284|N|Harvest Eyeless Petals.|US|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|2|H|L|224285|N|Harvest Luminous Strangler Sap.|US|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|3|H|N|Harvest Eyeless Petals.|US|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|2|H|N|Harvest Luminous Strangler Sap.|US|
C Spring Collection|QID|81683|M|72.80,80.43|Z|2255;Azj-Kahet|QO|1|N|Keep killing mobs until you have enough Reclaimed Catalyst.|US|
T Spring Collection|QID|81683|M|72.9, 42.6|Z|2255;Azj-Kahet|NC|N|To Grand Overspinner Antourix.|
T Measure Once, Cut Thrice|QID|81668|M|72.78,42.46|Z|2255;Azj-Kahet|N|To Ren'khat.|
Expand Down
2 changes: 1 addition & 1 deletion WoWPro_Leveling/Retail/Neutral/TWW_FotKT.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ C Trinkets, Curios and Other Powerful Objects|QID|83554|QO|2<5|M|63.25,45.30|Z|2
C Trinkets, Curios and Other Powerful Objects|QID|83554|QO|1|M|62.73,40.99|Z|2248; Isle of Dorn|N|Kirin Tor Artifacts collected.|US|
T Trinkets, Curios and Other Powerful Objects|QID|83554|M|61.53,42.84|Z|2248; Isle of Dorn|N|To Kalecgos.|
T Mysterious Necklace|QID|83555|M|61.53,42.84|Z|2248; Isle of Dorn|N|To Kalecgos.|
A Maybe You Shouldn't Touch That|QID|83556|PRE|81615&83554&83555|M|61.53,42.84|Z|2248; Isle of Dorn|N|From Kalecgos.|
A Maybe You Shouldn't Touch That|QID|83556|PRE|83554&83555|M|61.53,42.84|Z|2248; Isle of Dorn|N|From Kalecgos.|
C Maybe You Shouldn't Touch That|QID|83556|M|61.53,42.84|Z|2248; Isle of Dorn|N|Emerald Necklace inspected.|H|
T Maybe You Shouldn't Touch That|QID|83556|M|PLAYER|N|To Kalecgos.|
A Trapped Between Life and Death|QID|83641|PRE|83556|M|PLAYER|N|From Kalecgos.|
Expand Down
2 changes: 1 addition & 1 deletion WoWPro_Leveling/Retail/Neutral/TWW_Hallowfall.lua
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ C Restore the Flame|QID|78954|M|56.19,42.01|Z|2215;Hallowfall|CHAT|N|Tell Faerin
T Restore the Flame|QID|78954|M|56.19,42.01|Z|2215;Hallowfall|N|To Faerin Lothar.|
A To Mereldar|QID|78607|M|56.19,42.01|Z|2215;Hallowfall|N|From Faerin Lothar.|
A Delver's Call: The Sinkhole|QID|83767|M|48.71,39.61|Z|2215;Hallowfall|N|From Poster on the Pole.|RANK|3|
A Hungry in Hollow|QID|84392|M|48.45,39.39|Z|2215;Hallowfall|N|From Haelmut Aegisaxe.|LEAD|82843|RANK|2|LVL|75|
A Hungry in Hollow|QID|84392|M|48.45,39.39;49.22,39.58|CN|Z|2215;Hallowfall|N|From Haelmut Aegisaxe. He moves between his stall and the Inn. |LEAD|82843|RANK|2|LVL|75|
A Lights Out|QID|78686|M|49.14,41.09|Z|2215;Hallowfall|N|From Aegor Irynbawnd.|RANK|2|
T To Mereldar|QID|78607|M|43.42,48.57|Z|2215;Hallowfall|N|To Faerin Lothar.|
A The Bastion of Hallowfall|QID|78613|M|43.39,48.64|Z|2215;Hallowfall|N|From General Steelstrike.|
Expand Down
2 changes: 1 addition & 1 deletion WoWPro_Leveling/Retail/Neutral/TWW_Intro.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ P The Portrait Room|ACTIVE|78716|M|52.53,58.78|Z|2321;Chamber of Heart!Dungeon23
C Painful Lessons|QID|78716|M|46.80,54.47|Z|629;Aegwynn's Gallery@Dalaran|QO|2|NC|N|Meet with Khadgar in Dalaran.|
T Painful Lessons|QID|78716|M|42.86,59.87|Z|629;Aegwynn's Gallery@Dalaran|N|To Archmage Khadgar.|
A The Bronzebeard Family|QID|80500|PRE|78716|M|40.32,53.93|Z|629;Aegwynn's Gallery@Dalaran|N|From Moira Thaurissan.|
P Chamber of the Guardian|ACTIVE|80500|M|49.04,48.03|Z|627;Dalaran!Broken Isles|N|Take the portal to Chamber of the Guardian.|
P Chamber of the Guardian|ACTIVE|80500|M|64.22,22.30|Z|629;Aegwynn's Gallery@Dalaran|N|Take the portal to Chamber of the Guardian.|
C The Bronzebeard Family|QID|80500|M|50.68,55.49|Z|627;Dalaran|QO|1|CHAT|N|Talk to Brann in the Vistor's Center.|
P Chamber of the Guardian|ACTIVE|80500|M|49.04,48.03|Z|627;Dalaran!Broken Isles|N|Take the portal to Chamber of the Guardian.|
T The Bronzebeard Family|QID|80500|M|40.32,53.93|Z|629;Aegwynn's Gallery@Dalaran|N|To Moira Thaurissan.|
Expand Down
4 changes: 2 additions & 2 deletions WoWPro_Leveling/Retail/Neutral/TWW_SirenIsle.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local guide = WoWPro:RegisterGuide('Siren Isle', 'Leveling', 'Siren Isle', 'WoWPro Team', 'Alliance')
local guide = WoWPro:RegisterGuide('Siren Isle', 'Leveling', 'Siren Isle', 'WoWPro Team', 'Neutral')
WoWPro:GuideName(guide,"Siren Isle")
WoWPro:GuideContent(guide, 10)
WoWPro:GuideLevels(guide,80, 80)
Expand Down Expand Up @@ -136,4 +136,4 @@ T Laid To Rest At Last|QID|85573|M|70.89,39.90|Z|2369;Siren Isle|N|To Stellin Ve
]]

end)
end)
7 changes: 4 additions & 3 deletions WoWPro_Leveling/Retail/Neutral/TWW_TRD.lua
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ A On Cold, Dark Wings|QID|78900|PRE|78838|M|48.05,34.77|Z|2214; The Ringing Deep
A A Shadow Over Gundargaz|QID|78895|M|48.05,34.77|Z|2214; The Ringing Deeps|N|From Watcher Toki.|RANK|2|C|Demon Hunter,Warlock|
A The Councilward Summons|QID|79542|PRE|79525&79354|M|47.49,32.68|Z|2214; The Ringing Deeps|N|From Saradi|RANK|2|;This is part of the IoD Soujourner questline. its in the Dorn GUide.
A Discarded and Broken|QID|78562|PRE|78838|M|48.29,33.43|Z|2214; The Ringing Deeps|N|From Machinist Kittrin.|RANK|2|
C A Shadow Over Gundargaz|QID|78895|QO|1|M|48.26,34.44|Z|2214; The Ringing Deeps|N|Click on the Gundargaz Defender to Investigate the Market.|H|
C A Shadow Over Gundargaz|QID|78895|QO|1|M|48.26,34.44|Z|2214; The Ringing Deeps|N|Click on the green pool to the left of the Gundargaz Defender.|H|
;end insert class quests - pieced together needs tested -- pally priest warlock dh tested
A Brax's Brass Knuckles|QID|78918|M|47.94,32.16|Z|2214; The Ringing Deeps|N|From Innkeeper Brax.|RANK|2|
C Discarded and Broken|QID|78562|M|46.63,29.46|QO|1|Z|2214; The Ringing Deeps|N|Pick up box on left side of door..|H|
Expand Down Expand Up @@ -137,7 +137,7 @@ C Wax On, Pot Off|QID|79267|M|65.72,29.30|QO|1|Z|2214; The Ringing Deeps|N|Wax p
T Wax On, Pot Off|QID|79267|M|61.54,31.95|Z|2214; The Ringing Deeps|N|To Speaker Brinthe.|
T Tackling Torchsnarl|QID|78641|M|61.52,31.98|Z|2214; The Ringing Deeps|N|To Skitter.|
A New Candle, New Hope|QID|78642|PRE|78641&79267|M|61.52,31.98|Z|2214; The Ringing Deeps|N|From Skitter.|
C New Candle, New Hope|QID|78642|M|41.58,12.54|QO|1|CHAT|Z|2214; The Ringing Deeps|N|Speak with Skitter to enter the Darkflame Cleft.|
C New Candle, New Hope|QID|78642|M|61.52,31.98|QO|1|CHAT|Z|2214; The Ringing Deeps|N|Speak with Skitter to enter the Darkflame Cleft.|
C New Candle, New Hope|ACTIVE|78642|SO|1|N|Apply the kobold costume.|EAB|
C New Candle, New Hope|ACTIVE|78642|SO|2|N|Click on the candles to put them out, avoiding the see invis mobs.|
C New Candle, New Hope|ACTIVE|78642|SO|3|M|41.51,39.00|Z|2304;Darkflame Cleft|N|Remove your disguise and kill Waximus.|EAB|
Expand Down Expand Up @@ -591,7 +591,8 @@ C Orientation: Gundargaz|QID|81689|M|47.49,32.79|Z|2214; The Ringing Deeps|CHAT|
T Orientation: Gundargaz|QID|81689|M|47.15,34.14|Z|2214; The Ringing Deeps|N|To Moira Thaurissan.|
A The Hallowed Path|QID|78658|PRE|81689|M|47.08,32.22|Z|2214; The Ringing Deeps|N|From Anduin Wrenn.|
A Daily Diagnostics|QID|83108|PRE|78761|M|47.29,31.65|Z|2214;The Ringing Deeps|N|From Therkan. This is a dungeon quest, and not included in this guide.|RANK|3|
A Knicknack's Knicknacks|QID|83154|M|46.50,30.20|Z|2214;The Ringing Deeps|N|From Knicknack. This is a dungeon quest, and not included in this guide.|RANK|3|LVL|80|; Quest is bugged for players below level 80.
A Knicknack's Knicknacks|QID|83154|M|46.50,30.20|Z|2214;The Ringing Deeps|N|From Knicknack. This is a dungeon quest, and not included in this guide.|RANK|3|LVL|80|
A Knicknack's Knicknacks|QID|83154|M|46.50,30.20|Z|2214;The Ringing Deeps|N|From Knicknack. This is a dungeon quest, and not included in this guide.|RANK|3|PRE|83543|
T A Hint of Fear|QID|79256|M|55.05,63.29|Z|2214;The Ringing Deeps|N|To Moira Thaurissan.|
t Daily Diagnostics|QID|83108|M|47.29,31.65|Z|2214;The Ringing Deeps|N|To Therkan.|RANK|3|IZ|Gundargaz|
t Knicknack's Knicknacks|QID|83154|M|46.50,30.20|Z|2214;The Ringing Deeps|N|To Knicknack.|RANK|3|IZ|Gundargaz|
Expand Down
Loading

0 comments on commit 101d88e

Please sign in to comment.