View Single Post
05/05/18, 01:30 PM   #11
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
ZO_Tracker in API 10022 is a kind of "class" for the variable QUEST_TRACKER.
You build an object QUEST_TRACKER using the methods and attributes defined in ZO_Tracker.

See file questtracker.lua:
https://github.com/esoui/esoui/blob/...esttracker.lua

Lua Code:
  1. function ZO_QuestTracker_OnInitialized(self)
  2.     QUEST_TRACKER = ZO_Tracker:New(self, GetControl(self, "Container"))
  3.     ZO_QuestTracker.tracker = QUEST_TRACKER
  4. end

So calling QUEST_TRACKER.InitialTrackingUpdate() should do the trick.
Not sure if it's the same on PTS though.
  Reply With Quote