Thread Tools Display Modes
08/12/14, 12:27 PM   #1
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
which addon caused this error?

  Reply With Quote
08/12/14, 01:09 PM   #2
Sasky
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 231
The error message is from the base ESO files (not files from a specific addon) so it's pretty much impossible to track down with just that.
  • What addons do you have?
  • When does the error message show?
  • Can you try disabling addons to isolate which addon is causing the problem?
(NOTE: don't disable 1-by-1, but disable half at a time and it'll be much quicker. Ie, if you have 20 addons and disable 10 but the problem's still there, you know it isn't from the 10 you disabled. So now you just need to look at the 10 remaining.)
  Reply With Quote
08/12/14, 01:16 PM   #3
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
It is hard to say as this error has occured in XML, so there is no addon name. Try to find out which of your addons uses ZO_ScrollList template.

I.e. try to find all addons which have text "ZO_ScrollList" in .xml or .lua files and disable them one by one. It should not be too much addons. Right now I have installed 85 addons and none of the uses this template.
  Reply With Quote
08/12/14, 01:22 PM   #4
merlight
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 671
That's weird. Try looking for "activeControls" or "ZO_ScrollList" in your addons. That could narrow the suspects down a bit.
  Reply With Quote
08/12/14, 02:16 PM   #5
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
Originally Posted by Garkin View Post
It is hard to say as this error has occured in XML, so there is no addon name. Try to find out which of your addons uses ZO_ScrollList template.

I.e. try to find all addons which have text "ZO_ScrollList" in .xml or .lua files and disable them one by one. It should not be too much addons. Right now I have installed 85 addons and none of the uses this template.

Search "ZO_ScrollList" (48 hits in 9 files)

Souschef
advanced filters
atlas
Esotheater
Itemsaver
junkit


Search "activeControls" (4 hits in 1 file)

mhOutfitter
  Reply With Quote
08/12/14, 02:32 PM   #6
CrazyDutchGuy
 
CrazyDutchGuy's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 89
Can you explain when this error occurs ? Like mouseover on a specific place on the screen or ... ?
  Reply With Quote
08/12/14, 02:43 PM   #7
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
i dont remember but, it was happend when i scroll roster of the guild and try to travel on my guildmembers
as i can see from screenshot

Last edited by QuadroTony : 08/12/14 at 02:49 PM.
  Reply With Quote
08/12/14, 03:42 PM   #8
zgrssd
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 280
Originally Posted by QuadroTony View Post
i dont remember but, it was happend when i scroll roster of the guild and try to travel on my guildmembers
as i can see from screenshot
If it happened while working with the Stock UI, there is a decent chance it was just a random fluke.
Maybe the person you wanted to travel to left the guild/went offline just as you gave the order, your client was not awar and the two states collided (a classical race condition).

The core of all debugging is reporduceability.
Did this happen more then once? Have you tried a repair scan? If it only happened once, then you just really beat the odds by getting it and can ignore it. Only if stuff happens repeatedly do you have to start to worry.
  Reply With Quote
08/12/14, 03:58 PM   #9
merlight
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 671
Originally Posted by QuadroTony View Post
Search "ZO_ScrollList" (48 hits in 9 files)

Souschef - ok, only inventory refresh
advanced filters - not sure at first glance
atlas
Esotheater
Itemsaver - ok (FCO), only inventory refresh
junkit - ok (circonians), only inventory refresh


Search "activeControls" (4 hits in 1 file)

mhOutfitter - ok, iterates activeControls in a strange way, but harmless
I looked into some of those. The 2 I didn't check I wouldn't even suspect Last one I checked and only one I use was Advanced Filters, it hooks ZO_ScrollList_UpdateScroll which makes it a suspect, but I won't jump conclusions because 1) from my shallow peek I have no idea what it does and why it needs to hook UpdateScroll, and 2) I haven't seen this error once, despite having AF enabled all the time.
  Reply With Quote
08/12/14, 04:19 PM   #10
Randactyl
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 251
Originally Posted by merlight View Post
I looked into some of those. The 2 I didn't check I wouldn't even suspect Last one I checked and only one I use was Advanced Filters, it hooks ZO_ScrollList_UpdateScroll which makes it a suspect, but I won't jump conclusions because 1) from my shallow peek I have no idea what it does and why it needs to hook UpdateScroll, and 2) I haven't seen this error once, despite having AF enabled all the time.
ZO_ScrollList_UpdateScroll is hooked so AF can update (decrease) the size of the inventory scroll container and move its anchor if there is a set of subfilters for that tab.

Last edited by Randactyl : 08/12/14 at 04:21 PM.
  Reply With Quote
08/12/14, 06:20 PM   #11
merlight
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 671
Originally Posted by Randactyl View Post
ZO_ScrollList_UpdateScroll is hooked so AF can update (decrease) the size of the inventory scroll container and move its anchor if there is a set of subfilters for that tab.
Going off-topic here, but I'd rather do that after ChangeFilter, instead of hooking ZO_ScrollList_UpdateScroll which is used by a variety of lists:
Lua Code:
  1. --    ZO_PreHook(PLAYER_INVENTORY, "ChangeFilter", ChangeFilter)
  2. --    ZO_PreHook("ZO_ScrollList_UpdateScroll", RearrangeControls)
  3.     local zorgChangeFilter = ZO_InventoryManager.ChangeFilter
  4.     local function advancedChangeFilter(self, filterTab)
  5.         ChangeFilter(self, filterTab)
  6.         zorgChangeFilter(self, filterTab)
  7.         local inventoryType = filterTab.inventoryType
  8.         local inventory = self.inventories[inventoryType]
  9.         RearrangeControls(inventory.listView)
  10.     end
  11.     ZO_InventoryManager.ChangeFilter = advancedChangeFilter
  Reply With Quote
08/15/14, 12:42 PM   #12
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
lol wtf is this?



after each reloadui
  Reply With Quote
08/15/14, 12:49 PM   #13
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
lol its Wykkyd framework

but i didnt update it, and yesterday all was fine
  Reply With Quote
10/30/14, 03:46 PM   #14
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828


this is another one

what can it be? when i push E to move items
hotkey to move all items from DoItAll working fine, instead
  Reply With Quote
10/31/14, 04:55 AM   #15
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
can anyone tell me wtf is this addon? i can find it on the site/in minion/in addons folder/or in saved variables folder

  Reply With Quote
10/31/14, 05:10 AM   #16
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
It should be a .txt file in your addons folder. make a search ?
  Reply With Quote
11/01/14, 02:56 PM   #17
katkat42
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 155
Originally Posted by QuadroTony View Post


this is another one

what can it be? when i push E to move items
hotkey to move all items from DoItAll working fine, instead
This is a /bug within the ESO client itself that sometimes crops up. I've gotten it a few times myself. (I've resorted to using the right-click menu to work around it.)
  Reply With Quote
11/04/14, 01:28 PM   #18
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
what it can be?

  Reply With Quote
11/04/14, 01:35 PM   #19
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
I got this message with MultiCraft, maybe this one. I'm on it this evening
But it's maybe another addon.
  Reply With Quote
11/04/14, 02:34 PM   #20
Randactyl
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 251
Originally Posted by katkat42 View Post
This is a /bug within the ESO client itself that sometimes crops up. I've gotten it a few times myself. (I've resorted to using the right-click menu to work around it.)
Hey, you have Inventory Grid View installed yeah?
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » which addon caused this error?


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