ESOUI

ESOUI (https://www.esoui.com/forums/index.php)
-   AddOn Help/Support (https://www.esoui.com/forums/forumdisplay.php?f=164)
-   -   which addon caused this error? (https://www.esoui.com/forums/showthread.php?t=2109)

QuadroTony 08/12/14 12:27 PM

which addon caused this error?
 

Sasky 08/12/14 01:09 PM

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.)

Garkin 08/12/14 01:16 PM

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.

merlight 08/12/14 01:22 PM

That's weird. Try looking for "activeControls" or "ZO_ScrollList" in your addons. That could narrow the suspects down a bit.

QuadroTony 08/12/14 02:16 PM

Quote:

Originally Posted by Garkin (Post 11422)
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

CrazyDutchGuy 08/12/14 02:32 PM

Can you explain when this error occurs ? Like mouseover on a specific place on the screen or ... ?

QuadroTony 08/12/14 02:43 PM

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

zgrssd 08/12/14 03:42 PM

Quote:

Originally Posted by QuadroTony (Post 11430)
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.

merlight 08/12/14 03:58 PM

Quote:

Originally Posted by QuadroTony (Post 11428)
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.

Randactyl 08/12/14 04:19 PM

Quote:

Originally Posted by merlight (Post 11440)
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.

merlight 08/12/14 06:20 PM

Quote:

Originally Posted by Randactyl (Post 11441)
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

QuadroTony 08/15/14 12:42 PM

lol wtf is this?



after each reloadui

QuadroTony 08/15/14 12:49 PM

lol its Wykkyd framework

but i didnt update it, and yesterday all was fine

QuadroTony 10/30/14 03:46 PM



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

QuadroTony 10/31/14 04:55 AM

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 :confused::confused::confused:


Ayantir 10/31/14 05:10 AM

It should be a .txt file in your addons folder. make a search ?

katkat42 11/01/14 02:56 PM

Quote:

Originally Posted by QuadroTony (Post 12811)


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.)

QuadroTony 11/04/14 01:28 PM

what it can be?


Ayantir 11/04/14 01:35 PM

I got this message with MultiCraft, maybe this one. I'm on it this evening
But it's maybe another addon.

Randactyl 11/04/14 02:34 PM

Quote:

Originally Posted by katkat42 (Post 12863)
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?


All times are GMT -6. The time now is 02:40 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2014 - 2022 MMOUI