Wowpedia

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

READ MORE

Wowpedia
Register
Advertisement

Returns the list of statistic categories.

 categories = GetStatisticsCategoryList()

Returns[]

categories
table - list of all the categories

Example[]

The snippet below prints info about the category IDs.

local categories = GetStatisticsCategoryList()
for i, id in next(categories) do
    local key, parent = GetCategoryInfo(id)
    print("The key %d has the parent %d", key, parent)
end

Patch changes[]

Wrath-Logo-Small Patch 3.0.2 (2008-10-14): Added.

Advertisement