Thread: Item Database
View Single Post
04/18/14, 02:09 AM   #2
BadVolt
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 74
Originally Posted by alexistheboss15 View Post
Hey guys, I need a database of treadable items in ESO.

I am not sure how to get one, is there one available?

I need basically item stats/description/thumbnail/name/level etc...

Same thing that comes up when you drag over an item.

Maybe as an excel sheet or a database file.
It can be parced from tooltip itself.
With cycle as
Lua Code:
  1. function GetItemDescr()
  2.    local MaxItems=10000 (more for sure)
  3.    for i=1,MaxItems do
  4.       PreviouslyCreatedTooltop:SetLink("[|H3A92FF:item:"..i..":49:28:0:0:0:0:0:0:0:0:0:0:0:0:15:0:0:288:0|hSomeName|h]")
  5.    end
  6. end
You can try this. All that matters is item ID. And then parcing your tooltip.
  Reply With Quote