View Single Post
01/05/24, 01:54 PM   #3
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 5,000
Hi and welcome to ESO addon development.
Never worked with LLC in depth so I cannot help you with that.
I onlw know it provides callbacks that fire as something was done, e.g. after it did craft anything etc. where you can register to and run a callback function in your addon then.


But a good advice:
In your txt file please add the library's most current version as check via >= behind the library name if you create new addons so players do not enable any very outdated old version and your addon loads, but errors then -> Self protection against wrong bug reports

Current:
Code:
## DependsOn: LibLazyCrafting
New:
Code:
## DependsOn: LibLazyCrafting>=3086
The version behind the >= is in the LibLazyCrafting.txt at ## AddOnVersion: <version here> tag

Described here at the Wiki:
https://wiki.esoui.com/Libraries
  Reply With Quote