Download
(120 Kb)
Download
Updated: 11/02/23 11:51 AM
Pictures
File Info
Compatibility:
Endless Archive (9.2.5)
Updated:11/02/23 11:51 AM
Created:10/25/20 04:32 PM
Monthly downloads:17,224
Total downloads:654,165
Favorites:274
MD5:
Categories:Libraries, Data Mods
9.2.5
LibHistoire - Guild History  Popular! (More than 5000 hits)
Version: 1.5.1
by: sirinsidiator [More]
What is this library for?
Up until now, addons had to send guild history requests to the server individually, which in the past has lead to huge performance problems as more and more players started using these addons and ultimately forced ZOS to throttle how fast they are allowed to send automated requests for the guild history. In order to alleviate this problem and take a lot of the complexity away from individual addons, this library was born. Instead of having each addon send requests, it will all be taken care of by LibHistoire and they will simply become passive listeners.

The library will take care of loading missing history from the server in the background and store everything locally so it never has to request the same time range more than once.

Right now the game provides the history in an inverse order (future to past) of what addons actually try to use (past to future), so before the library passes any events to addons, it will attempt to load the full time range since you last played the game. During this time, it will keep them in a temporary "unlinked" state and only when it encounters the last stored event, it will save them and start sending events to listening addons. If you quit the game before that happens, all progress will be lost and it will have to start over from the beginning the next time you log in.

You can speed this process up by manually requesting missing history via the guild history menu, as this action won't be subject to the cooldown any addon has to deal with. Another option is to tell the library to force a link with what data it has got and create a hole in your history. You can always manually request more history events and trigger a rescan which will find any missing entries later.

Unlike other addons, the library won't request the full range of history provided by the server when you first use it. Instead it will immediately force a link and start collecting data from there. If you want to collect older history in that situation, you will need to manually request it and then hit the rescan button for that guild and category.

Dependencies
The following dependencies are required by LibHistoire:
  • LibAsync - to minimize fps loss while processing history events
  • LibCustomMenu - for the options menu of the status window
  • LibDebugLogger - for logging useful debug information in case something goes wrong

Some observations on what the server does
  • Requesting older history events via an addon starts a cooldown
  • The cooldown is separate for each guild and category, meaning an addon can send up to 20 requests at once
  • Simply put the interval between requests depends on how many players are currently online and is dynamically controlled by the server
  • Interval can be anything from a few seconds (on PTS) to several minutes during primetime EU. I've often seen values between 3 and 4 minutes while developing the library
  • New events are pushed automatically by the server with no way for addons to influence that process
  • The time between new events varies greatly and seems to depend on the how many players are online and how many events a guild produces
  • Sometimes the updates arrive almost instantly, sometimes they don't arrive for several hours - I've had to wait 2-3 hours quite often before any new guild history arrived
  • Ocassionally the updates never arrive (even after waiting for 5 hours) and restarting the game is the only way to force an update in that situation

User Interface

The status icon on the bottom right of the guild history symbolizes the link status of the currently viewed category in the selected guild. On hover it will show a tooltip that gives information about the stored history and unlinked events.


The new guild history status panel will provide an overview of what LibHistoire has stored and what is missing.

On the left side it will show each guild and the overall progress, on the right side it will show the categories for the currently selected guild.
Clicking on a guild or category will update the selection in both the status window and the guild history menu accordingly.
When you hover over any of the entries, a tooltip will show you the same information as the tooltip in the guild history menu.
The category entries also house the force link button (while the category is unlinked) and the rescan button (after it has linked up with stored events).
On the bottom of the panel you can see an icon which symbolizes the overall state and gives some general information about what is happening when you hover over it.
The cog button on the top right will open a context menu with an option to unlock the window so it can be moved and an option to hide it (same as the button on the bottom left of the guild history)

Special Thanks
FooWasHere who helped me test how the history behaves on rank and permission changes
ZOSDanBatson for answering my many questions about the history API
Everyone else who helped me test this and gave me feedback

For Developers
Why should you use it?
  • It minimizes the amount of requests sent by addons to the absolute minimum and if every addon starts using it, it will likely lower the cooldown the server chooses, so everyone gets their data faster.
  • It takes care of all the complexity that comes with requesting the history. There are many special cases you probably didn't even think about. The lib will handle them all for you.
  • It stores the history locally, so an addon can access time ranges that would be impossible via the game api
  • The data format minimizes impact on load time and disk space usage (compared to other addons like MM or ATT)

How does it work
The library listens to all incoming data and determines for each individual event if it has already been stored locally. It also takes care of sorting the events in the correct historic order and waits until the hole since the last login has been filled before saving them to disk and passing them to listeners.
When a listener starts, it will first iterate over available stored events, then wait for "unlinked" events to link before it iterates over those and finally start passing along newer events whenever they arrive. This is all done via LibAsync, so you will only get as many events per frame as you can safely process without affecting performance.
To avoid having to deserialize all stored events, it offers ways to select a starting point either by specifying an eventId or a timestamp*. It will do a binary search for the closest event and start from there instead of the beginning of the stored history.

*timestamps may not be 100% accurate as event times are returned from the game api as seconds since an event and manually converted to an absolute timestamp. This brings a certain inaccuracy with it and can lead to events being stored with timestamps that do not reflect their actual order. If precision is required it may be best to specify a timestamp a few seconds before the actual target time and use eventIds to identify an actual border for a time range.

If you find a problem, feel free to open an issue over on github, or leave a comment here on ESOUI.

API Reference
Callbacks
Can be accessed via the LibHistoire.callback table.

Code:
INITIALIZED()
Fired when Histy has finished initializing and is ready. Any call to the api (aside of RegisterCallback) should be done after it has fired.

Code:
HISTORY_RESCAN_STARTED(integer guildId, integer category)
Fired when the user or library triggered a rescan of the history.

Code:
HISTORY_RESCAN_ENDED(integer guildId, integer category, integer numEventsBefore, integer numEventsInside, integer numEventsAfter, boolean foundInvalidEvents)
Fired after a category rescan has finished. Invalid events are product of a bug where the game won't set the correct event time for a few seconds and the library will ignore them.

Library API
Code:
RegisterCallback(LibHistoire.callback type, function callback)
Register to a callback fired by the library. Usage is the same as with CALLBACK_MANAGER:RegisterCallback.

Code:
UnregisterCallback(LibHistoire.callback type, function callback)
Unregister from a callback. Usage is the same as with CALLBACK_MANAGER:UnregisterCallback.

Code:
LibHistoire.GuildHistoryEventListener listener = CreateGuildHistoryListener(integer guildId, integer category)
Creates a GuildHistoryEventListener object which can be configured before it starts listening to history events, or nil if guildId or category are not valid.
WARNING: Make sure you only call it after the INITIALIZED callback has fired, otherwise it may return nil.

GuildHistoryEventListener
Code:
string key = GetKey()
Returns a key consisting of server, guild id and history category, which can be used to store the last received eventId.

Code:
integer guildId = GetGuildId()
Returns the guild id of the listener.

Code:
integer category = GetCategory()
Returns the category of the listener.

Code:
integer eventCount, number processingSpeed, number timeLeft = GetPendingEventMetrics()
Returns information about history events that need to be sent to the listener.
  • eventCount - the amount of stored or unlinked events that are currently waiting to be processed by the listener
  • processingSpeed - the average processing speed in events per second or -1 if not enough data is yet available
  • timeLeft - the estimated time in seconds it takes to process the remaining events or -1 if no estimate is possible

Code:
boolean success = SetAfterEventId(id64 eventId)
Accepts an eventId (id64). The nextEventCallback will only return events which have a higher eventId when it is set. Will return true if it was called while the listener is not running, or false otherwise.

Code:
boolean success = SetAfterEventTime(integer eventTime)
If no afterEventId has been specified, the nextEventCallback will only receive events after the specified timestamp. Will return true if it was called while the listener is not running, or false otherwise.

Code:
boolean success = SetBeforeEventId(id64 eventId)
Accepts an eventId (id64). The nextEventCallback will only return events which have a lower or equal eventId when it is set. Once the specified eventId has been passed, the listener will automatically stop and call the function specified with SetIterationCompletedCallback. Will return true if it was called while the listener is not running, or false otherwise.

Code:
boolean success = SetBeforeEventTime(integer eventTime)
If no beforeEventId has been specified, the nextEventCallback will only receive events before (including) the specified timestamp. Like with beforeEventId, the listener will stop and call the iteration completed function when the specified eventTime has been reached. Will return true if it was called while the listener is not running, or false otherwise.

Code:
boolean success = SetIterationCompletedCallback(function callback)
When an end criteria is set, this callback will fire when the listener has stopped automatically.

Code:
boolean success = SetStopOnLastEvent(boolean shouldStop)
When set to true, the iteration will stop on the last stored event and fire the iterationCompleted callback instead of waiting for new events to arrive.

Code:
boolean success = SetTimeFrame(integer startTime, integer endTime)
A convenience method to specify a time range which includes the startTime and excludes the endTime. See SetAfterEventTime and SetBeforeEventTime.

Code:
boolean success = SetNextEventCallback(function callback)
Sets a callback which is passed stored and received events in the correct historic order (sorted by eventId). Will return true if it was called while the listener is not running, or false otherwise.
The callback has the following signature:
Code:
function(GuildEventType eventType, id64 eventId, integer eventTime, variable param1, variable param2, variable param3, variable param4, variable param5, variable param6)
More details about param1-6 can be found in guildhistory_shared.lua in the UI source code.

Code:
boolean success = SetMissedEventCallback(function callback)
Sets a callback which is passed missed events that are discovered during a rescan, ignoring any afterEventId or afterEventTime values. See SetNextEventCallback for details on the callback. Will return true if it was called while the listener is not running, or false otherwise.

Code:
boolean success = SetEventCallback(function callback)
A convenience function which will set both callback types in one go. See SetNextEventCallback for details on the callback. Will return true if it was called while the listener is not running, or false otherwise.

Code:
boolean success = Start()
Signals that the listener can start sending data to the addon. Will return true if it was called while the listener is not running, or false otherwise.

Code:
boolean success = Stop()
Signals that the listener to stop sending data to the addon. Will return true if it was called while the listener is running and has been stopped, or false otherwise.

Code:
boolean success = IsRunning()
Returns the current state of the listener.

Examples
Iterate over all stored events
Lua Code:
  1. LibHistoire:RegisterCallback(LibHistoire.callback.INITIALIZED, function()
  2.     local listener = LibHistoire:CreateGuildHistoryListener(guildId, category)
  3.     listener:SetEventCallback(function(eventType, eventId, eventTime, param1, param2, param3, param4, param5, param6)
  4.         -- do something with the event data
  5.     end)
  6.     listener:Start()
  7. end)
This will simply iterate over all stored events and then listen to any newly received data, including anything that will be found on a rescan.

Retrieve a time range
Lua Code:
  1. LibHistoire:RegisterCallback(LibHistoire.callback.INITIALIZED, function()
  2.     local listener = LibHistoire:CreateGuildHistoryListener(guildId, category)
  3.     listener:SetTimeFrame(startTime, endTime)
  4.     listener:SetNextEventCallback(function(eventType, eventId, eventTime, param1, param2, param3, param4, param5, param6)
  5.          -- do something with the event data
  6.     end)
  7.     listener:Start()
  8. end)
This example shows how to iterate over a specific time frame and then stop. SetTimeFrame is preferable over just checking the eventTime in the callback, as it will be faster than just iterating everything.

Retrieve sales for different guilds and continue from last event
Lua Code:
  1. LibHistoire:RegisterCallback(LibHistoire.callback.INITIALIZED, function()
  2.     local function SetUpListener(guildId, category)
  3.         local listener = LibHistoire:CreateGuildHistoryListener(guildId, category)
  4.         local key = listener:GetKey()
  5.         listener:SetAfterEventId(StringToId64(saveData.lastEventId[key]))
  6.  
  7.         listener:SetNextEventCallback(function(eventType, eventId, eventTime, param1, param2, param3, param4, param5, param6)
  8.             -- the events received by this callback are in the correct historic order
  9.             saveData.lastEventId[key] = Id64ToString(eventId)
  10.         end)
  11.  
  12.         listener:SetMissedEventCallback(function(eventType, eventId, eventTime, param1, param2, param3, param4, param5, param6)
  13.             -- events in this callback are out of order compared to what has been received by the next event callback and can even have an eventId smaller than what has been specified via SetAfterEventId.
  14.         end)
  15.         listener:Start()
  16.     end
  17.  
  18.     for i = 1, GetNumGuilds() do
  19.         SetUpListener(GetGuildId(i), category)
  20.     end
  21. end)
This example will register listeners for all guilds and keep track of the last event id that has been processed by the addon. That way the library will pass every event to the listener only once. It will also handle events that have been found later during a manual rescan.
v1.5.1
- fixed issue that prevented other addons from receiving data

v1.5.0
- added warning about upcoming changes
- added code to disable current library version in update 41
- updated for Secret of the Telvanni

v1.4.1
- fixed progress bar not updating when linking starts

v1.4.0
- fixed history rescan not updating the status window
- added rescan progress metrics in tooltip
- improved rescan speed dramatically (~100 times faster)
- added warning on exit and UI reload when events are currently being processed
- updated for Necrom

v1.3.0
- fixed error due to unused event types being removed in the latest game update
- fixed HISTORY_RESCAN_ENDED callback not firing when no events are detected during a rescan
- added stopOnLastEvent flag which makes the library stop the iteration when the last stored event is reached, instead of waiting for new events to appear
- updated for Firesong

v1.2.2
- fixed error when serializing unexpected event types

v1.2.1
- fixed an error preventing events from getting stored for new users or when joining a new guild
- fixed progress bars flickering yellow on initial load
- fixed event listener getting stuck in a loop in some cases
- fixed game freezing when storing missing events during a rescan in categories with lots of stored events
- fixed typo in logout warning dialog

v1.2.0
- fixed an issue that would cause some players to get kicked from the PTS (public test server)
- fixed progress bar not immediately filling to 100% when the last batch of missing events are received in a category
- fixed a rare error that could occur when stored data is deserialized and added some assertions to find the underlying reason
- changed progress bars on status window to show in a red color while events are missing and yellow while events are being processed
- added a confirmation dialog when trying to logout or quit the game while history events are not yet linked, which will send players to the history menu
- updated api version

v1.1.3 (dedicated to Sharlikran who found all these problems)
- fixed codec storing item links in an uncompressed form
- fixed several codec bugs that caused item links to get decoded into invalid links
NOTE: No data was lost and I believe I've found and fixed all incorrect cases and added unit tests to guard against regressions. As an additional measure the lib will now also throw an assertion error if it encounters links that cannot be decoded. Please make sure to report these so I can add them to the test cases and fix them!

- fixed several more bugs in the new GetPendingEventMetrics function

v1.1.2
- fixed error when rescanning a category

v1.1.1
- fixed error in new GetPendingEventMetrics function

v1.1.0
- improved event decoding speed
- changed some logging to reduce log spam
- fixed afterEventTime not returning the correct event when multiple events have the same timestamp
- fixed status tooltip not updating when linking process begins
- added progress info to tooltip while linking
- added log warning when trying to start a listener without an event callback
- added new functions to EventListener API
- GetKey - returns an identifier which can be used to store the last seen eventId for a listener
- GetGuildId - returns the guildId of a listener
- GetCategory - returns the category of a listener
- GetPendingEventMetrics - returns
the amount of stored or unlinked events that are currently waiting to be processed by the listener
the average processing speed in events per second or -1 if not enough data is yet available
the estimated time in seconds it takes to process the remaining events or -1 if no estimate is possible
- SetBeforeEventId, SetBeforeEventTime
these can be used to limit the iteration range and automatically stop the listener when they are passed
they will also ensure the correct data is returned by the GetPendingEventMetrics function when only a subset of the data is requested (otherwise it will consider all available events)
- SetIterationCompletedCallback
when an end criteria is set, this callback will fire when the listener has stopped automatically
- SetTimeFrame(startTime, endTime)
a convenience method to specify a range which includes the startTime and excludes the endTime
v1.0.2
- added new callback for when Histy is ready

v1.0.1 - initial release
Optional Files (0)


Archived Files (13)
File Name
Version
Size
Uploader
Date
1.5.0
120kB
sirinsidiator
11/01/23 03:20 PM
1.4.1
118kB
sirinsidiator
06/14/23 12:54 PM
1.4.0
118kB
sirinsidiator
04/19/23 12:44 PM
1.3.0
118kB
sirinsidiator
11/01/22 08:16 AM
1.2.2
118kB
sirinsidiator
04/25/21 06:41 AM
1.2.1
118kB
sirinsidiator
04/24/21 03:01 PM
1.2.0
118kB
sirinsidiator
04/22/21 01:22 PM
1.1.3
119kB
sirinsidiator
12/12/20 11:12 AM
1.1.2
118kB
sirinsidiator
12/05/20 02:33 PM
1.1.1
118kB
sirinsidiator
12/05/20 09:47 AM
1.1.0
118kB
sirinsidiator
12/04/20 07:01 AM
1.0.2
115kB
sirinsidiator
10/31/20 05:32 AM
1.0.1
115kB
sirinsidiator
10/25/20 04:32 PM


Post A Reply Comment Options
Unread 11/25/23, 05:58 AM  
WFXX

Forum posts: 1
File comments: 24
Uploads: 0
Hi all

Sometimes, when I want to /reloadui, I have this message :

"WARNING
LibHistoire is currently processing history! If you reload the UI now, you may corrupt your save data.
"

If I go to "E => Open History" it show a yellow progression bar but with 0 events left / less than a minute remaining (-1.0 events per second
I can wait hours, nothing change

Going to second option the popup window "ALT => Reload UI" does nothing
Popup window stays

If I decide to log out I'm able to use 2nd option "ALT => Log Out", but the problem persist unless I quit game and come back

Any idea ?
Report comment to moderator  
Reply With Quote
Unread 11/03/23, 02:13 PM  
ChickenFarmerMA

Forum posts: 0
File comments: 2
Uploads: 0
The link that comes up in my chat box about guild history changing (https://sir.insidi.at/or/2023/11/01/...d-libhistoire/) is being blocked as an infected webpage by Bitdefender.
Report comment to moderator  
Reply With Quote
Unread 11/02/23, 01:20 PM  
bearbelly
 
bearbelly's Avatar

Forum posts: 0
File comments: 19
Uploads: 0
Thanks for the update!! (1.5.1)
Back to working normally.
Report comment to moderator  
Reply With Quote
Unread 11/02/23, 11:05 AM  
bearbelly
 
bearbelly's Avatar

Forum posts: 0
File comments: 19
Uploads: 0
Originally Posted by Thrasher
I quit the game, reverted to the previous version, then restarted the game, and the MM history updated for the missing sales.
Yup. Reverting to v1.4.1 did the trick. It updated the missing info really quick, too. (faster than I was expecting, anyway, given that it was almost 24 hours of sales info.)
Report comment to moderator  
Reply With Quote
Unread 11/02/23, 08:58 AM  
Thrasher

Forum posts: 7
File comments: 189
Uploads: 0
Originally Posted by Mandragorane
Originally Posted by bearbelly
Originally Posted by Thrasher
Hi!

The latest update made MM not show sales since I last logged on.

Hope you con fix it.

Thrasher
I am also experiencing this. At this time, the latest sales info given in MM is 15 hours old, despite lots of sales having been made in those 15 hours.
And that IS after letting the scan finish after logging in this morning.
It's just not picking up anything since the last time I was logged in yesterday before LibHistoire was updated.
(I did the update this morning via Minion before I logged in to the game.)
Same here, something broke, had to install the previews version again its going through the motion and showing the progress bars moving through the history but its not reflecting in MM
I quit the game, reverted to the previous version, then restarted the game, and the MM history updated for the missing sales.
Report comment to moderator  
Reply With Quote
Unread 11/02/23, 08:36 AM  
Mandragorane

Forum posts: 0
File comments: 136
Uploads: 0
Originally Posted by bearbelly
Originally Posted by Thrasher
Hi!

The latest update made MM not show sales since I last logged on.

Hope you con fix it.

Thrasher
I am also experiencing this. At this time, the latest sales info given in MM is 15 hours old, despite lots of sales having been made in those 15 hours.
And that IS after letting the scan finish after logging in this morning.
It's just not picking up anything since the last time I was logged in yesterday before LibHistoire was updated.
(I did the update this morning via Minion before I logged in to the game.)
Same here, something broke, had to install the previews version again its going through the motion and showing the progress bars moving through the history but its not reflecting in MM
Last edited by Mandragorane : 11/02/23 at 08:47 AM.
Report comment to moderator  
Reply With Quote
Unread 11/02/23, 02:37 AM  
bearbelly
 
bearbelly's Avatar

Forum posts: 0
File comments: 19
Uploads: 0
Originally Posted by Thrasher
Hi!

The latest update made MM not show sales since I last logged on.

Hope you con fix it.

Thrasher
I am also experiencing this. At this time, the latest sales info given in MM is 15 hours old, despite lots of sales having been made in those 15 hours.
And that IS after letting the scan finish after logging in this morning.
It's just not picking up anything since the last time I was logged in yesterday before LibHistoire was updated.
(I did the update this morning via Minion before I logged in to the game.)
Last edited by bearbelly : 11/02/23 at 02:49 AM.
Report comment to moderator  
Reply With Quote
Unread 11/02/23, 12:22 AM  
Thrasher

Forum posts: 7
File comments: 189
Uploads: 0
Hi!

The latest update made MM not show sales since I last logged on.

Hope you con fix it.

Thrasher
Report comment to moderator  
Reply With Quote
Unread 08/29/23, 03:56 AM  
Sharlikran
 
Sharlikran's Avatar
AddOn Author - Click to view AddOns

Forum posts: 577
File comments: 1939
Uploads: 15
Originally Posted by IcyDeadPeople
many thanks for this amazing add on!!

I have a lot of alts. Is it normal for libhistoire to take a long time to update the bank and sales info for every character? Would you recommend leaving libhistoire off for most of my alts so I can get through the daily crafting writs faster? Often the menu indicates "0 events remaining" but still tries to prevent me from logging off.

EDIT: I have been reviewing your helpful guide here, which explains how to resolve unlinked events -

https://esouimods.github.io/3-master...UnlinkedEvents

I take it probably I need to do a ten day scan, and normally it shouldn't take so long to update the events each day, correct?
I am glad you like my helpful guide but keep in mind LibHistoire is written by Siri and not Sharlikran. This is the same as when someone uploaded LOOT to the Nexus and apologized to me about it when WrinklyNinja wrote LOOT.

Never the less, bank events are not used by MM so you can skip them entirely by clicking the chain. If you are a GM and you use Advanced Member Tooltip then you would want those events because that's used to show gold deposits.

So if you only use MM then just force link the Bank events to skip that and move on. Don't use the chain link for guild sales though unless you were offline for more then ten days. After you have been offline for more then ten days, then follow the instructions at the link that you provided.

As far as doing ten day scans... You only need to do a Ten Day scan once. After you do it once then link your events each day. The server will send data automatically but the server does it so slowly it's better to do that manually.
Report comment to moderator  
Reply With Quote
Unread 08/29/23, 03:38 AM  
Sharlikran
 
Sharlikran's Avatar
AddOn Author - Click to view AddOns

Forum posts: 577
File comments: 1939
Uploads: 15
Originally Posted by Itoq
Master Merchant does not display. It stopped a day or two back. I get an error 5106D5BD on character loadup.
After this issue came up, I set Open with Mail and Open with Store to OFF. When I re-enabled it (after /reloadui) to Open with Mail and Open with Store error I get error 45262A84.

LibHistoire is in the appropriate location.
Sorry I didn't see this error. If you are still having issues please provide a new LibDebugLogger link.
Report comment to moderator  
Reply With Quote
Unread 07/17/23, 01:37 PM  
robert.labrie

Forum posts: 4
File comments: 11
Uploads: 0
U39 PTS rate limited

## Version: 1.4.0
## AddOnVersion: 472
## APIVersion: 101037 101038

Getting rate limit kicked on PTS today with U39 deployed. Posted the same to the dev forums. FYI.

https://forums.elderscrollsonline.co...sh-on-startup/
Report comment to moderator  
Reply With Quote
Unread 07/14/23, 08:22 AM  
IcyDeadPeople

Forum posts: 0
File comments: 45
Uploads: 0
many thanks for this amazing add on!!

I have a lot of alts. Is it normal for libhistoire to take a long time to update the bank and sales info for every character? Would you recommend leaving libhistoire off for most of my alts so I can get through the daily crafting writs faster? Often the menu indicates "0 events remaining" but still tries to prevent me from logging off.

EDIT: I have been reviewing your helpful guide here, which explains how to resolve unlinked events -

https://esouimods.github.io/3-master_merchant.html#ResolvingUnlinkedEvents

I take it probably I need to do a ten day scan, and normally it shouldn't take so long to update the events each day, correct?
Last edited by IcyDeadPeople : 07/14/23 at 10:47 AM.
Report comment to moderator  
Reply With Quote
Unread 06/27/23, 11:15 PM  
Itoq

Forum posts: 0
File comments: 4
Uploads: 0
Master Merchant does not display. It stopped a day or two back. I get an error 5106D5BD on character loadup.
After this issue came up, I set Open with Mail and Open with Store to OFF. When I re-enabled it (after /reloadui) to Open with Mail and Open with Store error I get error 45262A84.

https://sir.insidi.at/or/logviewer/OpwI99\

LibHistoire is in the appropriate location.
Last edited by Itoq : 06/28/23 at 12:26 AM.
Report comment to moderator  
Reply With Quote
Unread 06/26/23, 08:04 AM  
Sharlikran
 
Sharlikran's Avatar
AddOn Author - Click to view AddOns

Forum posts: 577
File comments: 1939
Uploads: 15
Re: The game crashes, does not respond.

Originally Posted by NordPaladin
After I press this button, the update, the state of the game in the task manager becomes "not responding", I have to complete the task and start the game again.
https://esouimods.github.io/3-master...ngRescanbutton

I have added that information to a new troubleshooting section in the MM documentation.

After the Refresh finishes log out, log in, click the Rescan button, zone, enter and leave a Dungeon whatever you want and see if you still have the issue.
Last edited by Sharlikran : 06/26/23 at 10:29 AM.
Report comment to moderator  
Reply With Quote
Unread 06/20/23, 04:21 AM  
NordPaladin
 
NordPaladin's Avatar

Forum posts: 1
File comments: 21
Uploads: 0
The game crashes, does not respond.

After I press this button, the update, the state of the game in the task manager becomes "not responding", I have to complete the task and start the game again.
https://i.ibb.co/4WkJd46/image.jpg
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.