GetCategoryNumAchievements

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Patch
Added in 3.0.2 / 3.4.0 / 1.14.4

Returns the number of achievements for a category.

total, completed, incompleted = GetCategoryNumAchievements(categoryId [, includeAll])

Arguments

categoryId
number - Achievement category ID, as returned by GetCategoryList.
includeAll
boolean? - If true-equivalent, include all achievements, otherwise, only includes those currently visible

Returns

total
number - total number of achievements in the specified category.
completed
number - number of completed achievements in the specified category.
incompleted
number - number of incompleted achievements in the specified category.

Example

The snippet below prints the achievement IDs and names of all achievements in the World Events > Midsummer category:

for i=1, (GetCategoryNumAchievements(161)) do
 local id, name = GetAchievementInfo(161, i)
 print(id, name)
end

See also

Patch changes