Wowpedia

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

READ MORE

Wowpedia
Advertisement

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);
Advertisement