I made a macro to check whether I had grabbed all of these on alts or not and would like to share:
/run for k,v in pairs({Dornogal=82365,Deeps=82384,Hallowfall=82407,Spiders=82446}) do print(k..": "..tostring(C_QuestLog.IsQuestFlaggedCompleted(v))) end
This will show whether or not you have grabbed the [item=224072] from each renown.
Quest
For What Glimmers in the Deep
A World of Warcraft quest in Hallowfall. Facts and objectives from the current retail game data.
The highest voted Wowhead comments for this page. They are community notes, not TheWoWDB comments.
Seeing Karatar's macro, I made a fresh version that includes k'aresh and undermine. So now it not only shows whether you have obtained the [item=224072], but also the [item=231769] and the [item=230936] from each renown.
/run for k,v in pairs({["Dornogal"]=82384,["Ringing Deeps"]=82384,["Hallowfall"]=82407,["Azj-Kahet"]=82446,["K'aresh"]=90667,["Undermine"]=85827}) do print(k..": "..tostring(C_QuestLog.IsQuestFlaggedCompleted(v))) end
I would also like to share my own version, which also indicates these, although it only fits into 2 macros, but maybe it's a little more readable. It writes in green or red in the chat if the mission is complete or not.
First:
/run for name,questID in pairs({["Azj-Kahet"]=82446, ["Hallowfall"]=82407, ["Dornogal"]=82384}) do local done=C_QuestLog.IsQuestFlaggedCompleted(questID); print(name..": "..(done and "\124cff00ff00Kész\124r" or "\124cffff0000Nincs kész\124r")) endSecound:
/run for name,questID in pairs({["K'aresh"]=90667, ["Undermine"]=85827, ["Ringing Deeps"]=82384}) do local done=C_QuestLog.IsQuestFlaggedCompleted(questID); print(name..": "..(done and "\124cff00ff00Kész\124r" or "\124cffff0000Nincs kész\124r")) end
That is every comment on this page.
Quest facts
The client quest POI data records no map location for this quest, so no map is shown.
Check whether you have already completed this quest
in-game: /run print(C_QuestLog.IsQuestFlaggedCompleted(82407))
Community notes from Wowhead · 2 comments
Top 2 shown aboveThe comments below were written by Wowhead users. They are community notes, not TheWoWDB comments. See them in context on Wowhead.
All 2 comments on this page are shown in Top Comments above.
Reward details
Items you receive
“A powerful reagent created by enchanters.”
Item facts are the current retail client’s (ItemSparse); the specialisations for a pick-one item are the ones the Blizzard quest API lists; faction and currency text is the client’s own. Lowest listed price = the US commodity auction house now.