Thread Tools Display Modes
08/24/14, 03:05 AM   #1
Demaskinos
Join Date: Aug 2014
Posts: 1
InventoryInsight problem

I tried finding a post for this, but failed.
I get this error when ever opening my inventory, bank, guildbank, store, guild pane, settings, etc.

And I can't figure out how to fix it. Does anyone have some good ideas?
Attached Thumbnails
Click image for larger version

Name:	addon error.PNG
Views:	378
Size:	119.8 KB
ID:	442  
  Reply With Quote
08/24/14, 03:54 AM   #2
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
This error refers to this line of code:
Lua Code:
  1. local _, bagItems = GetBagInfo(bag)

Function GetBagInfo(...) was replaced in Update 3 with function GetBagSize(...).

There are several ways how to deal with this issue -

1) Download version fixed for Update 3 (recommended):
http://www.esoui.com/downloads/info6...sight-Fix.html

2) Use compatibility tool for Update 3:
http://www.esoui.com/downloads/info6...orUpdate3.html

3) Edit .lua files and replace all occurences of
Lua Code:
  1. local _, bagItems = GetBagInfo(bag)
with:
Lua Code:
  1. local bagItems = GetBagSize(bag)
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » InventoryInsight problem


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