Thread Tools Display Modes
11/04/14, 08:19 PM   #21
katkat42
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 155
Originally Posted by Randactyl View Post
Hey, you have Inventory Grid View installed yeah?
Nope, I'm running Advanced Filters, but not Grid View.

ETA: I'm also running Item Saver, if that helps.

Last edited by katkat42 : 11/04/14 at 08:22 PM.
  Reply With Quote
11/04/14, 08:53 PM   #22
Randactyl
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 251
Was just chasing down a lead, thanks anyways
  Reply With Quote
11/20/14, 03:25 PM   #23
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
erro t login screen
what it can be?
  Reply With Quote
11/21/14, 11:27 AM   #24
Sasky
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 231
Originally Posted by QuadroTony View Post
erro t login screen
Addons aren't loaded in the login screen and can't affect it. Go ahead and throw that one to Zenimax.
  Reply With Quote
11/21/14, 11:57 AM   #25
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
they dont answer either... weird situation btw
http://forums.elderscrollsonline.com...nable-to-login
  Reply With Quote
11/21/14, 01:30 PM   #26
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
In the launcher, you can try the repair function too.
  Reply With Quote
04/07/15, 07:13 AM   #27
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
what about this? looks like random behaviour i cannot figure out WHEN it happends

and too many addons to turn em one by one to figure out

  Reply With Quote
04/07/15, 07:34 AM   #28
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by QuadroTony View Post
what about this? looks like random behaviour i cannot figure out WHEN it happends

and too many addons to turn em one by one to figure out

Try to look for string "matches in lua files in your addon folder. It looks like debug message from some database addon.
  Reply With Quote
04/07/15, 10:36 AM   #29
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
catch it!

and what is this weirdo?

  Reply With Quote
04/08/15, 01:35 AM   #30
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
any ideas?
  Reply With Quote
04/08/15, 02:10 AM   #31
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
Maybe game itself, you are in gamepad mode here.. you should be in keyboard.

And this line is (the 26th line) .. called by InitializeEvents() which is only called by ZO_GamepadStoreRepair:Initialize(scene) ..



Lua Code:
  1. ZO_GamepadStoreRepair = ZO_GamepadStoreListComponent:Subclass()
  2.  
  3. function ZO_GamepadStoreRepair:New(...)
  4.     return ZO_GamepadStoreListComponent.New(self, ...)
  5. end
  6.  
  7. function ZO_GamepadStoreRepair:Initialize(scene)
  8.     ZO_GamepadStoreListComponent.Initialize(self, scene, ZO_MODE_STORE_REPAIR, GetString(SI_STORE_MODE_REPAIR))
  9.  
  10.     self.fragment:RegisterCallback("StateChange", function(oldState, newState)
  11.         if newState == SCENE_SHOWING then
  12.             self.list:UpdateList()
  13.         end
  14.     end)
  15.  
  16.     self:InitializeEvents()
  17.     self:InitializeKeybindStrip()
  18.     self:CreateModeData(SI_STORE_MODE_REPAIR, ZO_MODE_STORE_REPAIR, "EsoUI/Art/Vendor/vendor_tabIcon_repair_up.dds", fragment, self.keybindStripDescriptor)
  19.     self.list:SetNoItemText(GetString(SI_GAMEPAD_NO_DAMAGED_ITEMS))
  20. end
  21.  
  22. function ZO_GamepadStoreRepair:InitializeEvents()
  23.     local OnInventoryUpdated = function(eventId, bagId, slotId, isNewItem, soundCategory, reason)
  24.         if not self.control:IsControlHidden() then
  25.             if reason == INVENTORY_UPDATE_REASON_DURABILITY_CHANGE then
  26.                 self.list:UpdateList()
  Reply With Quote
04/08/15, 02:18 AM   #32
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
ye looks like game itself
  Reply With Quote
04/21/15, 05:03 AM   #33
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
just face this when change guild at the guild bank scene

weird
cant reproduce, happend only once

  Reply With Quote
04/21/15, 06:08 AM   #34
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
There are 3 addons which add something to the keybind strip at guildbank, Roomba, Stacked and a 3rd one, i don't remember it's name..

If Roomba adapts in their presence, I think the two others don't.
It's maybe roomba too, because it sometimes fails. sigh.
  Reply With Quote
04/21/15, 09:13 AM   #35
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,963
for me this error always happens if I have enabled Roomba + Stacked.

1. Open guild bank 1
2. Work with the withdraw panel
3. Change to the deposit panel
4. Change to guild bank 2

Now the error message appears and the roomba keybinds are missing, but stacked keybinds seem to be there.

Change the guild bank again to guild bank 1 and then 2 and everything is ok. Roomba keybinds are there and work again.

So it is just these 2 addons because I don't use any other addon changing the keybinds at the guild bank.
  Reply With Quote
04/21/15, 09:37 AM   #36
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
yes, i must look at my code ^^
But stacked could disable its keybind in gbuilk too, because it stacks nothing here
  Reply With Quote
04/29/15, 10:02 AM   #37
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
interesting
  Reply With Quote
04/29/15, 10:04 AM   #38
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 577
Originally Posted by QuadroTony View Post
interesting
Different versions of LibMainMenu.
LibMainMenu executes code directly after passing the version check, which is not good, if the order is from older to newer.
Copy the newest version to all locations using the older one.
  Reply With Quote
04/29/15, 11:02 AM   #39
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
how i can detect old lib main menu using Notepad++ and ctrl+f in all open documents?
  Reply With Quote
04/29/15, 11:12 AM   #40
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 577
Originally Posted by QuadroTony View Post
how i can detect old lib main menu using Notepad++ and ctrl+f in all open documents?
Search for
local MAJOR, MINOR = "LibMainMenu",

And check the number at the end of this line.
Take the file with the highest number and replace all files with a lower number.
  Reply With Quote

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

Thread Tools
Display Modes

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