View Single Post
08-31-18, 04:49 PM   #7
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,934
Originally Posted by Seerah View Post
As of my last export (Aug. 7) this event is registered for and referenced in QuestMapFrame.lua
I initially said that too, as I used to use it myself, but I can confirm that despite it being used in blizzard code, we can't seem to use it in our addons. I have done several world quests, emissary quests and regular levelling quests and it never triggered once at all today. So maybe they have it in their code still but it never triggers either. It's not like they haven't left redundant code in there before

Lua Code:
  1. elseif ( event == "QUEST_LOG_CRITERIA_UPDATE" ) then
  2.     local questID, criteriaID, description, fulfilled, required = ...;
  3.  
  4.     if (QuestMapFrame_CheckQuestCriteria(questID, criteriaID, description, fulfilled, required)) then
  5.       UIErrorsFrame:AddMessage(ERR_QUEST_ADD_FOUND_SII:format(description, fulfilled, required), YELLOW_FONT_COLOR:GetRGB());
  6.     end
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote