Prior to this latest patch, I could use:
/script for i,t in ipairs(C_TaskQuest.GetQuestsForPlayerByMapID(1961)) do print("Korthia Daily: " … C_QuestLog.GetTitleForQuestID(t.questId)) end
Now it is throwing an error. I assume there was an API change in the latest patch, but I’m not sure what needs to change the to make the Macro show all the WQs that are up in Korthia.
Use code blocks next time so forum formatting doesn’t ruin copy paste by turning the 2 dots into formatted 3 dots. Also, the variable you’re looking for in the table was changed to questID and is no longer questId, which is what’s throwing the error. Simply change that up and should be working fine.
/script for i,t in ipairs(C_TaskQuest.GetQuestsForPlayerByMapID(1961)) do print("Korthia Daily: "..C_QuestLog.GetTitleForQuestID(t.questID)) end