View Single Post
12/02/21, 08:32 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,980
Code:
user:/AddOns/FCMQT/Libs/LibCustomMenu.lua:86:
This was explained 1000 times meanwhile (e.g. here -> especialy at "If you see dependencies in subfolders (e.g. "libs") of addons") but once again:
Remove embedded libraries in subfolders of your addons!

So check folder FCMQT/Libs/ for all libraries in there and:
1. Check if you are able to find the libraries at www.esoui.com or within Minion
2. If not: Keep it and try if it will work this way. Else read below at "Time to find newer maintained addons instead?"
3. If so: Download it and install to live/AddOns directly just like normal addons
4. Delete the folder of the lib in your addon's folder, like: FCMQT/Libs/LibCustomMenu/

This should fix a lot of errors in older addons as they do not load the libs anymore from their subfolders but use the most up2date version now from your live/AddOns folder.

If the addons stop working and throw errors afterwards:
Search your addon's lua files for "LibStub" and remove it as it is obsolete.

You need to exchange the lines where e.g.
Lua Code:
  1. local LAM = LibStub("LibAddonMenu-2.0")
appears with:
Lua Code:
  1. local LAM = LibAddonMenu2

The global variable LibAddonMenu2 is different for each library! Could be LibCustomMenu, LibSets, etc. but do not use LibStub anymore to load the libraries as LibStub is obsolete meanwhile.
You can find the global library variable names at the library addon description or changelog.

Hope this helps and fixes your issue here.

Time to find newer maintained addons instead?
If not or if you are not able to do this on your own you should search newer addons as replacements, or patched versions (maybe someone linked them already to the addon comments).

btw I have used the forum search and found this already about the addon FCMQT:
https://www.esoui.com/forums/showthr...ighlight=FCMQT
-> You would have found the same if you would have used the forum search

Last edited by Baertram : 12/02/21 at 08:37 AM.
  Reply With Quote