Thread: quest ID
View Single Post
12-20-10, 11:22 AM   #2
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
afaik, you first need to have the Quest in your Quest Log to extract the ID from the UI escape sequence

this breaks the UI escape sequence to reveal the Quest ID:
Code:
/run print(strreplace(" [QuestLink] ", "\124", "!"))
alternatively, you can print all the Quest IDs in the quest log with this macro script:
Code:
/run for i = 1, GetNumQuestLogEntries() do if GetQuestLink(i) then print(strreplace(GetQuestLink(i), "\124", "!")) end; end
No idea, how wowhead datamines the quests that you can't have in your questlog though

Edit: Ailea has a better solution ><

Last edited by Ketho : 12-20-10 at 12:02 PM.
  Reply With Quote