View Single Post
05/03/14, 12:42 PM   #10
Flagrick
 
Flagrick's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 24
Originally Posted by Iyanga View Post
*nudge, nudge* Lootlog *nudge, nudge*
Thx,
but i search to easily find icon quest tool info, and not the quest rewards.

As i said before it is done.
Code:
if (lootType == LOOT_TYPE_ITEM) then
  EasyFind(...)
end
elseif (lootType == LOOT_TYPE_QUEST_ITEM) then
  HardQuestFind(...)
end
in EasyFind() i'm using loot info or, if it's not enough to get icon, bag info.
For the second part the tools item quest i have used
Code:
EVENT_QUEST_TOOL_UPDATED (luaindex journalIndex, string questName)
but it seems to do nothing for my purpose.
But i will perssist ;-)

next step, i will test
Code:
EVENT_QUEST_CONDITION_COUNTER_CHANGED (luaindex journalIndex, string questName, string conditionText, integer conditionType, integer currConditionVal, integer newConditionVal, integer conditionMax, bool isFailCondition, string stepOverrideText, bool isPushed, bool isComplete, bool isConditionComplete, bool isStepHidden)

Last edited by Flagrick : 05/03/14 at 01:16 PM.
  Reply With Quote