Uldum and Vale of Eternal Blossoms weekly assaults
speedwaystar opened this issue ยท 1 comments
Track whether alts have completed the main weekly N'Zoth assault in either the Vale or Uldum. Also, track whether they have completed the twice-weekly minor assaults in the zone which is not currently under main assault.
Some code I quickly made in game. C_TaskQuest.IsActive() returns false if is not available or if it is completed already. The addon should probably invert the logic (only show what is 'missing') for maximum usefulness
threats = C_TaskQuest.GetThreatQuests()
for index, data in ipairs(threats) do
print(data)
print(C_TaskQuest.IsActive(data))
print(IsQuestFlaggedCompleted(data))
end