Thread Tools Display Modes
Prev Previous Post   Next Post Next
08/11/15, 11:37 PM   #1
Balver
 
Balver's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 39
Did someone messed up the API?

Since a few days the plant Wiesenschaumkraut (Lady's Smock) is shown as WiesenschaumOkrautH in LootDrop and CDGShowLoot.

Also, my modified version of El Chivato doesn't show the XP from completed delves anymore.
This is the code:
Lua Code:
  1. local function OnObjectiveCompleted(event, zoneIndex, poiIndex, level, prevXP, newXP, rank, prevVP, newVP)
  2. local objectiveName, objectiveLevel, startDescription, finishedDescription = GetPOIInfo(zoneIndex, poiIndex)
  3. local newCXP = GetPlayerChampionXP()
  4.     if (objectiveName ~= nil and objectiveName:len() > 0) and newXP > initialXP then
  5.     local xpGain = newXP - prevXP
  6.     local cxpGain = newCXP - initialCXP
  7.         PrintXP(colors.POI, zo_strformat("<<t:1>> abgeschlossen. +<<2>> XP/+<<3>> CXP", objectiveName, xpGain, cxpGain))
  8.         initialXP = newXP
  9.         initialCXP = newCXP
  10.     end
  11. end
It worked a few days ago and I didn't heard of any API changes.
  Reply With Quote
 

ESOUI » AddOns » AddOn Help/Support » Did someone messed up the API?


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off