WoW API: GetNumTrackingTypes
Jump to navigation
Jump to search
← WoW API < GetNumTrackingTypes
Returns the number of available tracking methods.
GetNumTrackingTypes();
- Arguments
- none
- Returns
- Number of available tracking methods. Note that it excludes the "None" option from the counting. Both spells and static tracks are counted.
- Example
Prints available tracking methods in the default chat frame:
local count = GetNumTrackingTypes(); DEFAULT_CHAT_FRAME:AddMessage(count);