Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement

Returns a list of quests the character has completed in its lifetime.

questsCompleted = GetQuestsCompleted([table])

Arguments[]

table
table - If supplied, fills this table with quests. Any other keys will be unchanged.

Returns[]

questsCompleted
table - The list of completed quests, keyed by quest IDs.

Details[]

  • A quest appears in the list only after it has been completed and turned in, not while it is in your log.
  • Completing certain quests can cause other quests (alternate versions, etc.) to appear completed also.
  • Some quests are invisible. These quests are not offered to players but suddenly become "completed" due to some other in-game occurrence.
  • Daily quests appear completed only if they have been completed that day.
  • Pet Battle quests are account-wide and will be returned from this API across all characters. They can be discerned with GetQuestTagInfo() tagID 102.

Example[]

Prints completed questIds and their names (quest data gets cached from the server after the first query)

for id in pairs(GetQuestsCompleted()) do
	local name = C_QuestLog.GetQuestInfo(id)
	print(id, name)
end

For a fresh Human Priest who only completed two starter quests: A [1-10] Beating Them Back! (28763) and A [1-10] Lions for Lambs (28771)

/dump GetQuestsCompleted()
{
	[28757] = true, -- "Beating Them Back!" -- Mage
	[28762] = true, -- "Beating Them Back!" -- Paladin
	[28763] = true, -- "Beating Them Back!" -- Priest
	[28764] = true, -- "Beating Them Back!" -- Rogue
	[28765] = true, -- "Beating Them Back!" -- Warlock
	[28766] = true, -- "Beating Them Back!" -- Warrior
	[28767] = true, -- "Beating Them Back!" -- Hunter
	[29078] = true, -- "Beating Them Back!" -- unknown
	[31139] = true, -- "Beating Them Back!" -- Monk
	[28759] = true, -- "Lions for Lambs"
	[28769] = true, -- "Lions for Lambs"
	[28770] = true, -- "Lions for Lambs"
	[28771] = true, -- "Lions for Lambs" -- Priest
	[28772] = true, -- "Lions for Lambs"
	[28773] = true, -- "Lions for Lambs"
	[28774] = true, -- "Lions for Lambs"
	[29079] = true, -- "Lions for Lambs"
	[31140] = true, -- "Lions for Lambs"
}

Patch changes[]

Shadowlands Patch 9.0.1 (2020-10-13): Changed to C_QuestLog.GetAllCompletedQuestIDs() and returns quest IDs in a sequentially ordered table instead of associative.
Mists of Pandaria Patch 5.0.4 (2012-08-28): No longer requires QueryQuestsCompleted() to be called before.
Wrath-Logo-Small Patch 3.3.0 (2009-12-08): Added as GetQuestsCompleted()

See also[]

Advertisement