WoW:API GetTrackingInfo: Difference between revisions
Jump to navigation
Jump to search
(New page: {{wowapi}} <center>'''GetTrackingInfo''' ''-Documentation by Vladinator-''</center> Returns information regarding the specified tracking id. GetTrackingInfo(id); -...) |
m (Move page script moved page API GetTrackingInfo to API GetTrackingInfo without leaving a redirect) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{wowapi}} | {{wowapi}} | ||
Returns information regarding the specified tracking id. | Returns information regarding the specified tracking id. | ||
Line 20: | Line 19: | ||
;:''active'' : If the track is active, it will return 1 but otherwise nil. | ;:''active'' : If the track is active, it will return 1 but otherwise nil. | ||
;:''category'' : Track category, returns "spell" if the tracking method is a spell in the spellbook or " | ;:''category'' : Track category, returns "spell" if the tracking method is a spell in the spellbook or "other" if it's a static tracking method. | ||
---- | ---- | ||
Line 34: | Line 33: | ||
DEFAULT_CHAT_FRAME:AddMessage(name.." ("..category..")"); | DEFAULT_CHAT_FRAME:AddMessage(name.." ("..category..")"); | ||
end | end | ||
== Notes == | |||
* If you have any tracking items in your spellbook (Find Minerals, Find Treasure, etc), [[API GetNumTrackingTypes|GetNumTrackingTypes]] and [[API GetTrackingInfo|GetTrackingInfo]] will be wrong if used too early. | |||
-- in this example, the character has Mining. | |||
local name = GetTrackingInfo(1); | |||
-- at VARIABLES_LOADED | |||
name == "Repair" | |||
-- at PLAYER_ENTERING_WORLD | |||
name == "Find Minerals" |
Latest revision as of 04:46, 15 August 2023
Returns information regarding the specified tracking id.
GetTrackingInfo(id);
- Arguments
- When opening the tracking menu, the top option is 1, followed by 2, 3, and so on. The "None" function does not have a id assigned.
- Returns
- name
- Track name.
- texture
- Track texture.
- active
- If the track is active, it will return 1 but otherwise nil.
- category
- Track category, returns "spell" if the tracking method is a spell in the spellbook or "other" if it's a static tracking method.
- Example
Gathers information for the first option on the tracking list and lists it in the default chatframe:
local name, texture, active, category = GetTrackingInfo(1); DEFAULT_CHAT_FRAME:AddMessage(name.." ("..category..")");
Lists all tracking methods, name and category in the default chatframe:
local count = GetNumTrackingTypes(); for i=1,count do local name, texture, active, category = GetTrackingInfo(i); DEFAULT_CHAT_FRAME:AddMessage(name.." ("..category..")"); end
Notes[edit]
- If you have any tracking items in your spellbook (Find Minerals, Find Treasure, etc), GetNumTrackingTypes and GetTrackingInfo will be wrong if used too early.
-- in this example, the character has Mining. local name = GetTrackingInfo(1); -- at VARIABLES_LOADED name == "Repair" -- at PLAYER_ENTERING_WORLD name == "Find Minerals"