Download
(53 Kb)
Download
Updated: 03/04/24 12:46 AM
Compatibility:
Endless Archive (9.2.5)
Updated:03/04/24 12:46 AM
Created:02/05/17 10:02 PM
Monthly downloads:150,045
Total downloads:4,828,530
Favorites:1,004
MD5:
LibLazyCrafting  Popular! (More than 5000 hits)
Version: 4.006
by: Dolgubon [More]
Addons currently utilizing this Library:

Dolgubon's Lazy Writ Crafter
Dolgubon's Lazy Set Crafter
Writ Worthy
Lazy Alchemy Learner
Leo's Trainer
Aldanga's Lazier Writ Precrafter


If you use one of those addons you MUST download this library!

What does LibLazyCrafting Do?
  • Allows addons to create and upgrade a piece of gear with just one function
  • Allows addons to request items to be crafted anywhere, not just at the relevant crafting station
  • Abstracts away the confusing material index and material amount Smithing parameters
  • Provides functions to determine all the materials required to create a piece of gear
  • Extends CraftSmithingItem to allow the specification of crafting set and quality
  • Extends crafting functions to allow the use of itemIds in consumables
  • Allows addons to queue multiple crafts of the same type with one function call
  • Allows addons to use some crafting related functions anywhere, not just at a crafting station
  • Tells you when an item your addon requested is crafted, and where in the bag it is located
If you want your addon to craft items, LibLazyCrafting can help!If there's a crafting functionality you'd like that isn't in LLC, let me know and I'll see what I can do for it.

Github link: https://github.com/Dolgubon/LibLazyCrafting

Note: The github link now has complete documentation in the readme - check there! (but furniture support not yet in live version)

General Usage

Note: The usage section is incomplete at this time. If you wish to use this library, let me know and I can help you out.
Add the following to your manifest.txt file:
## DependsOn: LibLazyCrafting

Next, register your addon with LibLazyCrafting (LLC) in the addon initialized function:

local interactionTable = LibLazyCrafting:AddRequestingAddon(String addonName, boolean autoCraft, function callbackFunction, string
optionalDebugAuthor, table optionalStyleTable)
String addonName: The name of the requesting addon.
boolean autoCraft: Whether requests from this addon should by default be crafted as soon as possible
function callbackFunction ( String event, integer CraftingType, table requestTable) : The function that should be called when a requested craft is either complete, or failed for some reason. Not all parameters will always be returned

string optionalDebugAuthor: This is optional and if you give it your name, then it'll do debug messages when the character name matches. Not sure how good the debug message coverage is.
table optionalStyleTable: This is used if you do no choice/max style for crafting equippable gear. Basically, these are what styles LLC can use. You can still manually choose to use other styles if you want.
returns: An interaction table with which your addon can call the various functions provided by LLC. This interaction table contains most of the functions LLC provides.

Smithing

Functions available:

CraftSmithingItem( integer patternIndex, integer materialIndex, integer materialQuantity, integer styleIndex, integer traitIndex, boolean useUniversalStyleItem, integer:nilable stationOverride, integer:nilable setIndex, integer:nilable quality, boolean:nilable autocraft, anything:nilable reference)
This is the main function in this module. patternIndex, materialIndex, materialQuantity, styleIndex, traitIndex, and useUniversalStyleItem act in the same way as the ZOS provided CraftSmithingItem's parameters do.
stationOverride: Allows you to set a specific crafting station. Default is the station you are at. If you are not at a station the function will fail.
setIndex: An integer determining the crafted set you wish to create. The default is 1, which signifies no set. A list of set indexes can be found in the Smithing.lua file, or with GetSetIndexes()
quality: One of the ITEM_QUALITY global constants. The default is white quality.
autocraft: Determines if the library will craft the item. If it is false, the library will keep it in queue until the requesting addon tells it to craft the item.
reference: This can be any type of data. It lets your addon to identify the request, to delete it, craft it, and know when it is complete. The default is the empty string.potencyId, essenceId, aspectId: If you want to create equipment with glyphs, use these parameters
quantity: How many to make
returns: The request table, which contains all the information about the craft request.

InteractionTable:isSmithingLevelValid(boolean isCP, integer lvl)
returns boolean isValidSmithingLevel -- This returns true if equipment can be created at that level

CraftSmithingItemByLevel -- The second and third parameters are replaced by boolean isCP, integer level. The materialIndex and materialQuantity conversions are handled internally by LLC, but it is otherwise the same as CraftSmithingItem

ImproveSmithingItem
GetCurrentSetInteractionIndex
GetMatRequirements
compileRequirements
GetSetIndexes

GetSmithingResultLink -- IN PROGRESS

AddExistingGlyphToGear(existingRequestTable, glyphBag, glyphSlot)
- Takes in the bag and glyph slots of an existing piece of gear, and an existing craft request table, and then will apply that glyph to the gear once the gear is created
AddGlyphToExistingGear(existingRequestTable, gearBag, gearSlot)
- Same as the above, but the gear already exists, and you're waiting on the glyph to be made

Provisioning

CraftProvisioningItemByRecipeId


Alchemy

CraftAlchemyPotion


Enchanting

CraftEnchantingGlyph
AddExistingGlyphToGear(existingRequestTable, glyphBag, glyphSlot)
- Takes in the bag and glyph slots of an existing piece of gear, and an existing craft request table, and then will apply that glyph to the gear once the gear is created
AddGlyphToExistingGear(existingRequestTable, gearBag, gearSlot)
- Same as the above, but the gear already exists, and you're waiting on the glyph to be madeEnchantAttributesToGlyphIds(isCP, level, enchantId, quality) returns potencyId, essenseId, aspectId



Examples


Note: LLC_Global is a global queue meant only for testing and exploration.

/script LLC_Global:CraftSmithingItemByLevel(3, true, 150,3 ,1 ,false, CRAFTING_TYPE_CLOTHIER, 0, 3,true) -- crafts a blue CP150 shoes
/script for i= 2, 25 do LLC_Global:CraftSmithingItemByLevel(3, false, i*2,3 ,1 ,false, CRAFTING_TYPE_CLOTHIER, 0, 3,true) end -- Crafts lvl 4,6, 8, 10, etc. up to lvl 50. The items will be blue shoes.

/script LLC_Global:CraftEnchantingItemId(45830, 45838, 45851) -- Crafts a Monumental Glyph of Flame Resist
Version 4.006:

Fixed a bug where the compile mat requirements for provisioning would set times to make to 1 (and then use 1 for calculations)

Version 4.005:

Recipe map is now up to date

Version 4.004:

API Bump
Now calculates material requirements for unknown recipes. This will fix the current known bug in set crafter where unknown recipes do not have material requirements in the materials scroll list.

Version 4.003:

Fixed a bug where attempting to use a request table to calculate the material requirements for provisioning items would fail if it was a returned table from a craft success event. In those, the timesToMake field is a quantity field.

Version 4.002:

Added LibLazyCrafting:AddListeningAddon(addonName, callbackFunction)
Addons can call this function to hear about everything created by LLC.
callBackFunction has the signature (String LLCEvent, String addonRequester, int station, table returnTable)
addonRequester is whatever addon asked for the item to be created. Is nil for some events.

Version 4.001:

Fixed a bug where generating recipe material requirements would not take into account increased quantities

Version 4.0:

Added support for the mat requirements for provisioning
Also increased version number to 4.0 :D

Version 3.0.866:

Fixed a bug when using the CraftProvisioningItemByRecipeId function

Version 3.0.865:

Added support for furniture crafting!
It uses the same functions as provisioning, but now trying to use the functions with furniture arguments will actually work. This new feature required changes to the queuing code of the library
Added some aliases for provisioning/furniture functions. Mainly, instead of saying CraftProvisioningItem you can say CraftFurnishingItem. This is solely for readability and understandability when using the functions; there is no actual difference in behaviour
Added CraftProvisioningItemByResultItemId. This will let you request to make a provisioning/furnishing item by passing the item ID of the item that you want
Added a Read Me with documentation on use and some specific functions, as well as some general useful and related info on the game API. Ideally, if you're interested you'll read it on the github, but it's still included in the zip.
Some minor code cleanup

Version 3.0.864:

Fixed a bug with smithing requirement compilation which caused errors if it was an improvement type job. This will fix a set crafter bug that occurred when a non white item was attempted to be crafted.
Fixed a bug with the consolidated set selection on keyboard that occurred when a search filter had been applied

Version 3.0.863:

Fixed a bug with compiling requirements

Version 3.0.862:

Fixed a bug with the consolidated stations on gamepad
Fixed a bug that could occasionally occur on Keyboard if there was a search string, and possibly under some other conditions
Jewelry upgrade mat requirements are now correct for lower levels of improvement skill
Fixed leaking variable
Now plays crafting sounds even in gamepad mode. Because crafting should be satisfying for the plebs using gamepad too

Version 3.0.861:

Fixed the jewelry mat amount requirements. This probably only affected the UI in set crafter
Added a nil check and to the switching station function. It should fix a rare, somewhat random bug

Version 3.0.86:

API Update
LLC is now compatible with the new consolidated crafting stations! Note that this consolidation makes it incompatible with Necrom, so only update after the maintenance.

Version 3.0.85:

API Bump

Version 3.0.84:

Added the new sets. It should scan for the new item links on the first load.

Version 3.0.83:

API Bump
Does NOT include the new sets, since I don't have PTS. I'll add those in after the patch drops. Also won't scan until that happens
Tightened the check for the improvement skill for jewelry. Will now no longer craft past green if you do not have the maximum improvement skill level

Version 3.0.82:

Fixed a bug where if the smart style was selected in writ crafter you would obtain an error

Version 3.0.81:

API Bump
Added Galen sets
Smart style addition. AKA use lowest count of style stone
Add a 'reverse' material function by request for o7ac0n

Version 3.0.80:

API Bump

Version 3.0.79:

API Bump
A bugfix for newer jewelry sets. (Thanks deinspanjer!)
Note that new set ids haven't been added in bc I don't have PTS anymore. Will do another upload tomorrow to add them in.

Version 3.0.78:

API Bump
Added sets from last patch

Version 3.0.77:

API bump

Version 3.076:

Using correct API Version. Should fix the super long scrape.

Version 3.075:

API Bump

Version 3.074:

Fixed a bug with the home statino marker integration which occurred when making non set items

Version 3.073:

Fixed the issues with HomeStationMarker integration

Version 3.072:

Added new sets

Version 3.071:

Fixed a minor typo in the home station marker integration

Version 3.0.7:

API Bump
Added integration with HomeStationMarker. If your addon uses LibLazyCrafting, it now has automatic integration!
If an addon calls the register function twice, the error message will now say which one did it

Version 3.0.6:

API Version bump

Version 3.0.5:

Added Legacy of Karth, which had accidentally not been added. LLC will need to scan, but there's been improvements made so that it doesn't need to scan nearly as much, and should be much faster

Version 3.0.4:

Added Markarth crafted sets. LLC will need to scan again. Sorry!

Version 3.0.3:

API Bump

Version 3.0.2:

API Bump
Added Indeko glyphs to the enchanting info tables
Fixed a bug where if multiple addons called the craft interact function, the no further craft event would be thrown
Fixed a bug where smithing items would never craft more than 6 at a time
Fixed a bug with crafting requirement compilation where some CP items were said to require the wrong materials
Added a check to inventory space when checking if an item can be crafted
Added a function to compile all non craftable reasons for an addon's queue. Currently only works for smithing
Adapted to a ZOS issue where pattern ids for some sets for jewelry were swapped, causing jewelry queued for those sets to make the wrong item

Version 3.01:

Added code to deal with Stuhn's Favour jewelry pattern indexes being swapped

Version 3.0:

Fixed a bug where choosing an enchanting level for glyphs or to craft would cause errors if it was not a valid enchanting level. Now, it'll just get the level just before (i.e. if you choose lvl 12 it'll give you lvl 10)
Note: Also went to 3.0 to stop having so many 9s

Version 2.999:

Fixed a bug where sometimes New Moon Acolyte gear would not be crafted
Fixed a bug where if LibStub was not running there would be an error
Fixed a bug where if a non auto craft item's base item was crafted it would not improve it automatically

Version 2.998:

Fixed backwards compatability bug

Version 2.997:

Fixed a bug where there would sometimes be a lua error in the get materials

Version 2.996:

API Bump
Added Greymoor sets
Added quantity options to Enchanting (Thanks to Timothy Mclane/Aldanga - not sure any of the code ended up there but it definitely gave me the motivation to finish it!)
Added full support for multicraft for Smithing and created enchanted and improved gear
Removed the override multicraft parameter, as it's no longer needed
Added LLC_FREE_STYLE_CHOICE - You can now specify a table when registering your addon, and the library will use this table to decide which style mat to use (based on which style has the most stones available)
Fix to CancelItem, will now work as expected (Thanks LeandroSilva)
The create link from arguments option will no longer throw errors if the parameters it is given are invalid, and will instead return empty string

Version 2.995: (I'm not sure what happened to 2.994...)

Fixed a bug where the event 'no further items craftable' would not be thrown on craft completion
Added some minor error checking to the smithing get item link function
Fixed some old version numbers

Version 2.993:

Added a function IsItemLinkRobe to tell apart robes and Jerkins
When computing links, no longer returns Jerkins for Robes and vice versa

Version 2.992:

LLC_NO_FURTHER_CRAFT_POSSIBLE is now thrown when there are no further interactions that can be done at a station
Improved some extremely rare error messages
Added LLC_CRAFT_PARTIAL_IMPROVEMENT. This event is thrown when an item has been improved from white but is not yet at the final quality
Fixed a bug where material requirements for improvement requests where the item is at greater than white quality would include materials needed to improve from white to the final quality rather than skipping already used mats.
Fixed a bug where material requirements for dual enchanting and equipment requests would include equipment requirements even if the equipment was complete
Removed station from the internal material requirements function parameters, as it's already listed in the request

Version 2.991:

Removed some extra debug statements

Version 2.99:

Enchanting now sends an INITIAL_CRAFT_SUCCESS event when it's a dual smithing/enchanting request
Fixed a bug where the check for doubly registered addons was not working
Added a function to get the table of a registered addon by name
Moved Smithing's INITAL_CRAFT_SUCCESS event throws to after all associated LLC code has been run
Improvement requests now properly contain the requirements for enchanting
Added GetSmithingResultItemLink (or whatever the function name is)

Version 2.98:

Fixed a bug some people were encountering where there was a lua error after loadscreens

Version 2.97:

Removed debug messages

Version 2.96:

Added support for item links for
Will now scan once per game update to find all crafted set IDs, and save it in your saved variables
Added a hardcoded fix for New Moon Acolyte jewelry (pattern ids were swapped by ZOS)

Version 2.95:

Added Dragonhold sets

Version 2.94:

API Bump
- Note that that is all that has been changed

Version 2.93:

Fixed the error in the last version

Version 2.92:

Fixed a lua error in the last version

Version 2.91:

Fixed an issue where if the nonMulticraftOverride was set to true it wouldn't check if there was enough materials beyond those required for the first item

Version 2.9:

Added an override to make use of the multicraft. Note for add-on authors: It does not work for improving items, nor does it return bag slots of all new items!

Version 2.8:

Fixed the issue where, if creating two or more glyph gear combo items, it would make n-1 extra glyphs
Items in ESO+ subscriber bank are now prioritized over items in the backpack, (Enchanting and Alchemy only. Impossible for other crafts)
Updated for the next patch. It works, however does not currently take advantage of the new multicrafting capabilities

Version 2.71:

Fixed the lua error that was occurring when crafting glyphs

Version 2.7:

Actually fixed the issue where not knowing one or more runes in a requested glyph would result in two glyphs being created

Version 2.6:

Enchanting support added. (might give more detailed later)

Version 2.5:

Added the LibLazyCrafting.INDEX_NO_SET constant

Version 2.4:

API Bump
Did some backend modifications in preparation for adding Furniture support
Gear crafting now uses the set Ids provided by the game
Added the ## isLibrary manifest command
Added Elsweyr sets
Fixed an issue where not knowing one or more runes in a requested glyph would result in two glyphs being created
Fixed a bug where the library was not properly clearing the craftNow fields in request tables
Added the ability to queue an enchanted piece of gear. The API for these are:

CraftSmithingItem(patternIndex, materialIndex, materialQuantity, styleIndex, traitIndex, useUniversalStyleItem, stationOverride, setIndex, quality, autocraft, reference, potencyId, essenceId, aspectId) (Added potencyId, essenceId and aspectId at the end)
CraftSmithingItemByLevel(patternIndex, isCP , level, styleIndex, traitIndex,
useUniversalStyleItem, stationOverride, setIndex, quality, autocraft, reference, potencyId, essenceId, aspectId)
AddExistingGlyphToGear(existingRequestTable, glyphBag, glyphSlot)
- Takes in the bag and glyph slots of an existing piece of gear, and an existing craft request table, and then will apply that glyph to the gear once the gear is created
AddGlyphToExistingGear(existingRequestTable, gearBag, gearSlot)
- Same as the above, but the gear already exists, and you're waiting on the glyph to be made

Version 2.33:

Updated version numbers so that it doesn't conflict with old versions.

Version 2.32:

The library now comes in a standalone library format, similar to many other libraries. If you use an addon which uses this library, you will need to download it (Writ Worthy, Dolgubon's Lazy Set Craft and Dolgubon's Lazy Writ Crafter)
API version 'bump'

Version 2.31:

Fixed a type causing lua errors: CRAFTING_TYPE_JEWELRY -> CRAFTING_TYPE_JEWELRYCRAFTING

Version 2.3:

Added Murkmire sets.
Added a debug option and a throw error function in the addon. Not really used yet, but might add more error throwing to help debugging in the future.

Version 2.21:

Fixed a bug where improving a jewelry item to green would use 2 improvement mats rather than one.
Fixed a bug where the number of improvement mats for jewelry given by the Compile Requirements would use the old amounts (Thanks to @Ziggr)

Version 2.2:

Crown Mimic Stones will now be used even if the style stone is missing.
Old versions of the widgets will no longer be overwritten by a new version.
Will now work on PTS.
Code cleanup: Some unnecessary code has been deleted, and some previously global fields are now local.

Version 2.1:

Improvement level checking now uses textures, which is non language dependent.
Now checks the crafting skill for Blacksmithing, Clothing, and Woodworking to see if the user has a high enough skill to make an item.
Compiling mats now works for Jewelry Crafting.
Jewelry Crafting will no longer fail due to lack of style mats.
Added a new field to the Craft Request tables, craftNow. By default not set (i.e. set to nil) if it is true, the library will craft the item when at a station. It can only be set to true while at a station, and if the user exits the station it will be set back to false automatically. CraftAllItems and CraftItem now change this new field, and their old functionality has been taken over by the new functions SetAllAutoCraft and SetAutoCraft.
Added craftInteract to the function table. This is the function which is called when the player interacts with a crafting station. An addon can call it to force the library to rescan the queue and see if there is something it can craft.
Enchanting file added back in.

Version 2.0: (Jewelry Crafting)

Preliminary support for jewelry crafting. - Ziggr
Refactored checks for style and trait knowledge. - Ziggr
Fixed the check for the improvement skill in languages other than English. - Ziggr
Added checks to determine if the user has enough mats to craft Alchemy and Provisioning items.
Changed to use GetItemLinkItemId instead of the custom version. If not on PTS, it will still use the custom version.

Version 1.9: (Release #2 - Smithing update)

Moved smithing timestamps to a unique identifier. The identifiers are integers, and incremented each time an item is added to the queue.
Fixed issues with backwards compatibility - if an old version was loaded before a newer version, an event handler would not be properly overridden. The old version would then change a local variable in the old version, but not a local variable in the new version which should have been changed.

Version 1.9:

Uses of sortCraftQueue have been removed, in favour of sticking solely with table.remove and table.insert. table.sort is unstable, which caused a rare double crafting issue when multiple items were added at the exact same timestamp while at a crafting station.
Fixed a bug where incorrect material requirements (light materials) would be returned for medium armour.

Version 1.8:

Created a new function to throw events to clean up some code.
Added two new events: LLC_NO_FURTHER_CRAFT_POSSIBLE and LLC_INITIAL_CRAFT_SUCCESS.
LLC_NO_FURTHER_CRAFT_POSSIBLE: Thrown when no more items can be made at the current station
LLC_INITIAL_CRAFT_SUCCESS: Thrown when the white item is created, but must be further improved before being complete.
Fixed a bug where creating multiple items with green or higher quality would cause some white items to be made too many times.
The EndInteraction function was previously removed from the main LLC.lua file, and has been added back in.
Added a check to determine if a CP and level combination is valid.
Added the return of the requestTable to more craft event places.
Fixed a bug where the wrong improvement mat requirements would be given.
Fixed a bug where sometimes the wrong ability would be checked when determining the improvement skill level.

Version 1.7:

Added Material totals for Smithing.
Changed the interaction tables to be slightly more OOP by taking in self.
Removed double crafting bugs. (Pretty confident about this one!)
Fixed an off by one error in smithing
Added a return of the request table to the smithing functions.

Version 1.6:

Possibly fixed a double crafting issue.
Added LibLazyCrafting:IsPerformingCraftProcess()

Version 1.5:

Fixed a bug in provisioning and alchemy whereby the library would fail to recognize an item was crafted if it created a new stack. - fix by ziggr

Version 1.4:

Added the Clockwork City sets.

Version 1.3:

Fixed various typos in the Alchemy file.
Went back to GetTimeStamp() in the smithing file (as it should have been. Sorry!)
Added back timesToMake as an optional parameter in the Alchemy file.
Replaced the body of the crafting complete function with the stackableCraftingComplete function in the alchemy file.
Removed the FindIncreasedSlotIndex from the Alchemy file, as it was already contained in the main LLC file.

Version 1.2:

Fixed a LUA error that would appear when using Provisioning functions.

Version 1.1:

Now supports all types of crafting! (Minus furniture) - Thank you to Ziggr for creating the functions required to support it!
Updating current version. Probably has various bugfixes. The library has been updated over time as needed with various bugfixes and changes, and has just not been updated here on esoui.


Version 1:

Various changes, bugfixes, and improvements, mostly based on what I needed. Not a comprehensive list.
- Added an option reference when you create a craft request
- Added the ability to cancel craft requests based on position in queue or by reference
- Fixed an error where the craft queue was not updating properly
-
Optional Files (0)


Archived Files (83)
File Name
Version
Size
Uploader
Date
4.005
53kB
Dolgubon
02/28/24 07:23 PM
4.004
52kB
Dolgubon
02/27/24 11:05 PM
4.003
45kB
Dolgubon
02/15/24 06:39 PM
4.002
45kB
Dolgubon
02/11/24 10:19 PM
4.001
45kB
Dolgubon
01/19/24 10:02 AM
4.0
45kB
Dolgubon
01/15/24 11:08 AM
3.0866
44kB
Dolgubon
01/13/24 06:12 PM
3.0865
44kB
Dolgubon
01/10/24 05:57 PM
3.0864
39kB
Dolgubon
11/15/23 09:18 PM
3.0863
39kB
Dolgubon
11/04/23 11:03 PM
3.0863
39kB
Dolgubon
11/03/23 09:29 PM
3.0861
39kB
Dolgubon
10/30/23 09:05 PM
3.086
39kB
Dolgubon
10/29/23 10:43 PM
3.085
39kB
Dolgubon
08/20/23 10:26 PM
3.084
39kB
Dolgubon
06/13/23 07:22 PM
3.083
38kB
Dolgubon
06/04/23 09:32 PM
3.082
38kB
Dolgubon
03/13/23 11:19 PM
3.081
38kB
Dolgubon
03/12/23 10:33 PM
3.080
38kB
Dolgubon
08/22/22 04:53 PM
3.079
38kB
Dolgubon
06/05/22 09:25 PM
3.078
38kB
Dolgubon
03/13/22 02:32 PM
3.077
38kB
Dolgubon
11/01/21 12:42 AM
3.076
38kB
Dolgubon
08/23/21 08:48 AM
3.075
38kB
Dolgubon
08/23/21 08:19 AM
3.075
38kB
Dolgubon
08/22/21 11:57 PM
3.074
38kB
Dolgubon
06/19/21 02:53 PM
3.073
38kB
Dolgubon
06/12/21 09:36 AM
3.072
38kB
Dolgubon
06/03/21 09:24 PM
3.071
38kB
Dolgubon
05/31/21 06:31 PM
3.07
38kB
Dolgubon
05/30/21 09:51 PM
3.06
37kB
Dolgubon
03/07/21 06:30 PM
3.05
37kB
Dolgubon
12/19/20 03:04 PM
3.04
37kB
Dolgubon
11/22/20 06:05 AM
3.03
36kB
Dolgubon
11/01/20 08:07 PM
3.02
36kB
Dolgubon
08/23/20 04:16 PM
3.01
35kB
Dolgubon
06/24/20 10:14 PM
3.0
35kB
Dolgubon
06/09/20 06:35 PM
2.999
35kB
Dolgubon
05/16/20 07:34 PM
2.999
35kB
Dolgubon
05/16/20 07:23 PM
2.998
35kB
Dolgubon
05/03/20 05:37 AM
2.997
35kB
Dolgubon
05/03/20 01:03 AM
2.996
35kB
Dolgubon
05/02/20 10:19 PM
2.995
33kB
Dolgubon
04/08/20 06:27 PM
2.995
33kB
Dolgubon
02/23/20 07:30 PM
2.993
33kB
Dolgubon
01/04/20 10:55 PM
2.992
33kB
Dolgubon
01/03/20 09:25 PM
2.991
33kB
Dolgubon
12/29/19 03:30 PM
2.99
33kB
Dolgubon
12/28/19 11:20 PM
2.98
32kB
Dolgubon
11/22/19 08:56 PM
2.97
32kB
Dolgubon
11/17/19 07:24 PM
2.96
32kB
Dolgubon
11/16/19 09:22 PM
2.95
31kB
Dolgubon
10/27/19 01:24 PM
2.94
31kB
Dolgubon
10/20/19 08:34 PM
2.93
31kB
Dolgubon
08/31/19 02:58 PM
2.92
31kB
Dolgubon
08/31/19 02:29 PM
2.91
31kB
Dolgubon
08/31/19 01:13 PM
2.9
31kB
Dolgubon
08/30/19 06:30 PM
2.8
31kB
Dolgubon
08/11/19 09:33 PM
2.71
31kB
Dolgubon
07/06/19 02:33 PM
2.7
31kB
Dolgubon
07/06/19 12:47 PM
2.6
30kB
Dolgubon
06/30/19 07:44 PM
2.5
28kB
Dolgubon
05/27/19 08:26 PM
2.4
28kB
Dolgubon
05/19/19 04:54 PM
2.33
26kB
Dolgubon
02/25/19 10:42 PM
2.32
26kB
Dolgubon
02/21/19 08:46 PM
2.31
25kB
Dolgubon
10/21/18 10:25 PM
2.23
25kB
Dolgubon
10/21/18 08:56 PM
2.21
25kB
Dolgubon
08/19/18 03:57 PM
2.2
22kB
Dolgubon
07/21/18 09:19 PM
2.1
25kB
Dolgubon
05/21/18 02:44 AM
2.0
22kB
Dolgubon
05/01/18 11:58 AM
1.9
22kB
Dolgubon
12/22/17 11:29 AM
1.9
22kB
Dolgubon
12/15/17 10:39 AM
1.8
21kB
Dolgubon
12/14/17 11:54 AM
1.7
21kB
Dolgubon
12/13/17 10:44 AM
1.6
19kB
Dolgubon
12/10/17 10:47 AM
1.5
18kB
Dolgubon
11/04/17 01:13 PM
1.4
18kB
Dolgubon
10/22/17 12:10 AM
1.3
17kB
Dolgubon
08/27/17 07:10 AM
1.2
19kB
Dolgubon
08/24/17 01:53 PM
1.1
16kB
Dolgubon
08/14/17 03:27 AM
1
14kB
Dolgubon
05/20/17 05:24 PM
0.1
12kB
Dolgubon
02/05/17 10:02 PM


Post A Reply Comment Options
Unread 11/05/17, 09:40 AM  
tomtomhotep
 
tomtomhotep's Avatar
AddOn Author - Click to view AddOns

Forum posts: 21
File comments: 217
Uploads: 6
Question Anchanting.lua??

In your LLC.txt you have a file listed which is not in the zip file:

Anchanting.lua

You also have instructions on how to use the missing file:

;------------
;Enchanting:
;As consumables are much simpler than smithing, Enchanting is just another way to craft the items. You can call the functions as you normally would,
;with bag and slot IDs, or additionally you can call it by passing itemIds.
Report comment to moderator  
Reply With Quote
Unread 12/13/17, 11:01 AM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 885
Uploads: 21
Re: Anchanting.lua??

Originally Posted by tomtomhotep
In your LLC.txt you have a file listed which is not in the zip file:

Anchanting.lua

You also have instructions on how to use the missing file:
Hey sorry I never saw this. Didn't really think anyone would comment on this It was a typo and should have been Enchanting.lua, and has been fixed. Thanks!
Report comment to moderator  
Reply With Quote
Unread 04/14/18, 04:33 AM  
qoqo
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 7
Uploads: 1
improvement doesn't work for non English user

skillIndex in function LLC_SmithingCraftInteraction() is different other than English.


http://www.esoui.com/forums/showthread.php?t=5341
Report comment to moderator  
Reply With Quote
Unread 04/30/18, 02:36 AM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 885
Uploads: 21
Re: improvement doesn't work for non English user

Originally Posted by qoqo
skillIndex in function LLC_SmithingCraftInteraction() is different other than English.


http://www.esoui.com/forums/showthread.php?t=5341
Thanks for letting me know. I'll try and get this fixed.
Report comment to moderator  
Reply With Quote
Unread 05/01/18, 05:41 PM  
Anceane
 
Anceane's Avatar
AddOn Author - Click to view AddOns

Forum posts: 306
File comments: 1017
Uploads: 1
Enchanting.lua ?

did you remove the Enchanting.lua from the folder by mistake or is this a change ?

because the two addons i have using liblazycrafting, have the file enchanting.lua in their .txt

Aka Dolgubonkazycrafter and writworthy.

Thank you
Report comment to moderator  
Reply With Quote
Unread 05/01/18, 05:49 PM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 885
Uploads: 21
Re: Enchanting.lua ?

Originally Posted by Anceane
did you remove the Enchanting.lua from the folder by mistake or is this a change ?

because the two addons i have using liblazycrafting, have the file enchanting.lua in their .txt

Aka Dolgubonkazycrafter and writworthy.

Thank you
That's by mistake. It shouldn't matter for you as a user though, even if you have it downloaded through minion (that doesn't do anything btw, game won't load a standalone version)
Report comment to moderator  
Reply With Quote
Unread 05/01/18, 06:45 PM  
Anceane
 
Anceane's Avatar
AddOn Author - Click to view AddOns

Forum posts: 306
File comments: 1017
Uploads: 1
Re: Re: Enchanting.lua ?

Originally Posted by Dolgubon
Originally Posted by Anceane
did you remove the Enchanting.lua from the folder by mistake or is this a change ?

because the two addons i have using liblazycrafting, have the file enchanting.lua in their .txt

Aka Dolgubonkazycrafter and writworthy.

Thank you
That's by mistake. It shouldn't matter for you as a user though, even if you have it downloaded through minion (that doesn't do anything btw, game won't load a standalone version)
I know but i am curious by nature ... :P so i like to check the differences between version from time to time not that i would be able to do it myself, but still ... :P
Report comment to moderator  
Reply With Quote
Unread 05/21/18, 02:45 AM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 885
Uploads: 21
Re: Re: Re: Enchanting.lua ?

Originally Posted by Anceane
Originally Posted by Dolgubon
Originally Posted by Anceane
did you remove the Enchanting.lua from the folder by mistake or is this a change ?

because the two addons i have using liblazycrafting, have the file enchanting.lua in their .txt

Aka Dolgubonkazycrafter and writworthy.

Thank you
That's by mistake. It shouldn't matter for you as a user though, even if you have it downloaded through minion (that doesn't do anything btw, game won't load a standalone version)
I know but i am curious by nature ... :P so i like to check the differences between version from time to time not that i would be able to do it myself, but still ... :P
The Enchanting.Lua file has been added back in.
Report comment to moderator  
Reply With Quote
Unread 01/02/19, 09:32 PM  
F-Lambda

Forum posts: 1
File comments: 82
Uploads: 0
Crafting for addons anywhere! NOT a standalone addon. This is a meant ONLY for addon developers. Seriously, why are there 4.4k downloads on this?
The fact that libraries are installed separately now probably helps.
Report comment to moderator  
Reply With Quote
Unread 01/20/19, 09:35 PM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 885
Uploads: 21
Originally Posted by F-Lambda
The fact that libraries are installed separately now probably helps.
This one isn't though.
Report comment to moderator  
Reply With Quote
Unread 02/24/19, 10:46 PM  
code65536
AddOn Author - Click to view AddOns

Forum posts: 21
File comments: 371
Uploads: 40
Originally Posted by Dolgubon
Originally Posted by F-Lambda
The fact that libraries are installed separately now probably helps.
This one isn't though.
Apparently it is in the 2.5.16 you just released.
Report comment to moderator  
Reply With Quote
Unread 02/25/19, 12:15 AM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 885
Uploads: 21
Originally Posted by code65536
Originally Posted by Dolgubon
Originally Posted by F-Lambda
The fact that libraries are installed separately now probably helps.
This one isn't though.
Apparently it is in the 2.5.16 you just released.
Yup!
Report comment to moderator  
Reply With Quote
Unread 02/26/19, 09:23 PM  
Leah Ann

Forum posts: 14
File comments: 35
Uploads: 0
LibLazy causes crashes :(

Hi. I haven't ever had crashing issues before. I installed the liblazy and immediate the game crashes. I restarted the game and eventually the computer. It sill crashed. I uninstalled liblazy and the crashes stopped. The addons won't work without it, so there's that.

Any ideas?

Thanks!
Report comment to moderator  
Reply With Quote
Unread 02/28/19, 09:47 PM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 885
Uploads: 21
Re: LibLazy causes crashes :(

Originally Posted by Leah Ann
Hi. I haven't ever had crashing issues before. I installed the liblazy and immediate the game crashes. I restarted the game and eventually the computer. It sill crashed. I uninstalled liblazy and the crashes stopped. The addons won't work without it, so there's that.

Any ideas?

Thanks!
Frankly, it's probably not LibLazyCrafting, and if it does have any part in it, it's because of a conflict with something else. Do you have any addons which are very old, or are very rarely used?
Report comment to moderator  
Reply With Quote
Unread 03/01/19, 12:49 PM  
Leah Ann

Forum posts: 14
File comments: 35
Uploads: 0
Re: Re: LibLazy causes crashes :(

Originally Posted by Dolgubon
Originally Posted by Leah Ann
Hi. I haven't ever had crashing issues before. I installed the liblazy and immediate the game crashes. I restarted the game and eventually the computer. It sill crashed. I uninstalled liblazy and the crashes stopped. The addons won't work without it, so there's that.

Any ideas?

Thanks!
Frankly, it's probably not LibLazyCrafting, and if it does have any part in it, it's because of a conflict with something else. Do you have any addons which are very old, or are very rarely used?
I disabled every addon except the these and it still crashes.

Unfortunately, I use all the addons I have installed, and some of them haven't been updated for a very long time. However, there was no issue until I installed this. Uninstalling it fixes the crashing, but I love the addon too much!

If I knew where to get the crash log, I could copy it. Or if I knew where to get the bug catcher logs, I could look for that.

**I did disable every addon but liblazy and it crashed. I disabled it and no crash. If that's the only addon, even to the exclusion of the crafting writ addons, I don't know what else to do.**

Thanks for looking at it~

Leah Ann
Last edited by Leah Ann : 03/01/19 at 01:26 PM.
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.