View Single Post
10/03/17, 01:40 PM   #4
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 577
Originally Posted by ObjectMetadata View Post
Thanks for your reply!
How do I use journalIndex? It's always nil when I print it
Its not that easy.
You should use some tool addons like zgoo.

Lua Code:
  1. for i = 1,QUEST_TRACKER:GetNumTracked() do
  2.     local entry = QUEST_TRACKER:GetTrackedByIndex(i)
  3.     d(GetJournalQuestName(entry:GetJournalIndex()))
  4. end
  Reply With Quote