View Single Post
08/19/18, 04:29 PM   #7
Kyoma
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 125
Originally Posted by Rhynchelma View Post
The latest coercion of Lorebooks has a more complete list in its Quesrdata.lua file.

Maybe ask the author where/how he got his list.
That would be me And I got it with a loop of GetNextCompletedQuestId() on a character that had completed all of the the new Summerset quest. Just something like this:
Code:
    local questId = GetNextCompletedQuestId()
    while questId ~= nil do
        local questName, questType, <the rest> = GetCompletedQuestInfo(questId)
        --do stuff
        questId = GetNextCompletedQuestId(questId)
    end
  Reply With Quote