View Single Post
06/15/18, 01:21 AM   #1
darthbacca37
Join Date: Jun 2018
Posts: 2
Guidance on Understand Addon development and new updates to the latest API

Hi, I wondered if anyone could help?


I recently been looking at an addon called Item Quality as Text (looks like there has been no updates in a very long while) (http://www.esoui.com/downloads/info7...ityasText.html) as I needed some help with item quality as I am Colourblind.


After trying to use it, I found it not working and out of date. With some very basic diagnostics, I managed to gix it up and appears to now be working within the Iventory again.


What I then did was add further diagnostic to it so it could capture any that were missing. over the last few days I managed to get the following from the parent name (local parentName = parent:GetName()):

ZO_QuickSlotListContents
ZO_Daily_Login_Rewards_KeyboardRewardsContainerListContents
ZO_MailInboxContents
ZO_Collectionbook_topLevelListContainerListContents


I cant seem to get any data for these and the API site is not the best of looking to find anything. THis is what its using to get the item (following on from the Inventory as that worked):

-- ZO_Collectionbook_topLevelListContainerListContents
if parentName == "ZO_Collectionbook_topLevelListContainerListContents" then
return GetItemLink(item.dataEntry.data.bagId, item.dataEntry.data.slotIndex, LINK_STYLE_DEFAULT)
end


Doesnt seem to show anything. Any ideas? THis is the complete file if it helps:

https://file.io/KUu936
  Reply With Quote