6 lines
446 B
Lua
6 lines
446 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param questTbl table
|
|
---@return table completedQuests
|
|
---Gets a table containing the quests the player has completed. This function will only return data after QueryQuestsCompleted() has been called and the QUEST_QUERY_COMPLETE event has fired. The keys in the returned table are the numeric questIds, with a value of true for each set key.
|
|
function GetQuestsCompleted(questTbl) end |