View Single Post
01/07/16, 09:15 PM   #2
merlight
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 671
Originally Posted by dominoid View Post
I really know it's going to be something dumb. I'm looking to add to the existing in-game quest list on the journal page.

From Wyykyd's Quest Tracker, I can use

Code:
local allQuests, allCategories, seenCategories = QUEST_JOURNAL_MANAGER:GetQuestListData()
That method is only used at startup to create initial tables, so called master list, here http://esodata.uesp.net/current/src/...d.lua.html#229

You'll probably want to manipulate that questMasterList. But then you might run into issues with MAX_JOURNAL_QUESTS, the active quest limit.


Originally Posted by dominoid View Post
I thought I could hook or overload (I'm not sure the difference)
You can't overload functions in Lua There's no way to attach argument count/type restrictions to a function.
  Reply With Quote