View Single Post
09/30/21, 01:07 AM   #6
ApoAlaia
Join Date: Nov 2020
Posts: 6
Originally Posted by Sharlikran View Post
Where the issue lies is in your ability and skill to make minor changes to the Lua files for older mods that may still work with the current version of ESO. The most common and most basic change is.

If you find
Code:
local LAM = LibStub( 'LibAddonMenu-2.0')
local LCM = LibStub( 'LibCustomMenu')
Change to
Code:
local LAM = LibAddonMenu2
local LCM = LibCustomMenu
Other then that it can become more involved. Probably the safest way is to see what embedded libraries there are. If you find LibCustomMenu and LibAddonMenu-2.0 those are pretty safe to remove. When you do then you only need to look for the LibStub lines that load either of those Addons and change it.

If you have to get fancier then that you may run into situations where you break the mod unless you can figure it out.
One could say that you have to break it to figure it out no?

At least for plebs like myself that is often the case. Just keep breaking what someone more skilled or more talented (often both) has made until one figures it out.

Either way I appreciate the replies, thanks
  Reply With Quote