View Single Post
05/12/19, 06:00 AM   #1
Tonyleila
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 288
Furniture Preview AddOn?

Does anyone know how I can auto generate a list to make new Furniture items preivew able with FurniturePreview. Sadly It dosen't work with any new recipes since murkmire so its quite useless now. The PreviewData.lua inside \FurniturePreview\Libs\LibPreview hints that it includes an auto generated list of item IDs and fitting DDS files but I don't know how to auto update that list. Woud be realy happy if there is an easy way to fix this sice I learnd a lot new recipes via the anniversary event and want to look through them.

The list looks like this:

Lua Code:
  1. lib.ITEMID = 1
  2. lib.ICON = 2
  3. lib.NAME = 3
  4. lib.QUALITY = 4
  5. lib.LEVEL = 5
  6. lib.STACK = 6
  7.  
  8. --[[
  9. This data is auto generated, do not edit!
  10. format: [marketId] = {itemId, iconFile, name (english), itemQuality, required level, numItems}
  11. ]]--
  12.  
  13. lib.MarkedIdToItemInfo = {
  14.     [11] =
  15.     {
  16.         [1] = 64537,
  17.         [2] = "/esoui/art/icons/store_experiencescroll_001.dds",
  18.         [3] = "Crown Experience Scroll",
  19.         [4] = 5,
  20.         [5] = 0,
  21.         [6] = 5,
  22.     },

I'm not even sure if this is the reason it can't preview new items but maybe someone else here knows more!

Last edited by Tonyleila : 05/12/19 at 06:02 AM.
  Reply With Quote