Automated updating of API pages at this location, to reflect patch changes, has ceased from 10.1.7 onwards. |
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[]
Patch 3.0.2 (2008-10-14): Added.