View Single Post
01/20/24, 04:55 AM   #3
DakJaniels
AddOn Author - Click to view addons
Join Date: Mar 2021
Posts: 31
Originally Posted by Baertram View Post
I think the setting is only about "new looted materials" and not about already owned materials in banks and inventories (but I might be wrong, you have to test that).
If you got ESO+ it always will be moved to craftbag automatically on any realoadui / login again.

If you do not want that to happen on reloadui/logout/quit then ZO_PreHook Logout and the ReloadUI and Quit functions and check if your setting in addon is enabled, and then disable the game setting above properly, and see if this helps.
Could it be as simple as overriding
Lua Code:
  1. IsESOPlusSubscriber()
with
Lua Code:
  1. IsESOPlusSubscriber = function () return false end

I know overriding works for
Lua Code:
  1. IsInGamepadPreferredMode()
as
Lua Code:
  1. IsInGamepadPreferredMode = function () return false end
disables Gamepad UI when a Gamepad is in use. Might be worth looking into.
  Reply With Quote