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:163,355
Total downloads:4,816,204
Favorites:1,003
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 01/16/24, 12:25 AM  
CirceNova

Forum posts: 0
File comments: 2
Uploads: 0
Talking Re: Re: Writ Crafting Not Functioning Since Update

Originally Posted by Dolgubon
This was a conflict with Writ Worthy, the latest update of it broke normal writ crafting.
Writ worthy has now been updated to fix the conflict, so it should work if you update again.


Originally Posted by CirceNova
Well, basically, automatic writ crafting is not functioning. I ran the Minion update about 45 minutes ago.

Thanks in advance for the help!
Just came here to say that the WW update fixed it. Thanks for the reply!
Report comment to moderator  
Reply With Quote
Unread 01/15/24, 08:09 PM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 883
Uploads: 21
Re: Writ Crafting Not Functioning Since Update

This was a conflict with Writ Worthy, the latest update of it broke normal writ crafting.
Writ worthy has now been updated to fix the conflict, so it should work if you update again.


Originally Posted by CirceNova
Well, basically, automatic writ crafting is not functioning. I ran the Minion update about 45 minutes ago.

Thanks in advance for the help!
Report comment to moderator  
Reply With Quote
Unread 01/15/24, 07:21 PM  
sora0v0
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 62
Uploads: 3
Re: Writ Crafting Not Functioning Since Update

Automation seems to stop when using the latest writ worthy.
I put it back in the past for now.
According to the comments over there, it seems to be a problem with the gamepad environment.

Originally Posted by CirceNova
Well, basically, automatic writ crafting is not functioning. I ran the Minion update about 45 minutes ago.

Thanks in advance for the help!
Report comment to moderator  
Reply With Quote
Unread 01/15/24, 07:01 PM  
CirceNova

Forum posts: 0
File comments: 2
Uploads: 0
Writ Crafting Not Functioning Since Update

Well, basically, automatic writ crafting is not functioning. I ran the Minion update about 45 minutes ago.

Thanks in advance for the help!
Report comment to moderator  
Reply With Quote
Unread 01/14/24, 12:41 AM  
Frackou
 
Frackou's Avatar

Forum posts: 6
File comments: 102
Uploads: 0
Thx RomaNTIC it was working and thx Dolgubon for the official fix
Report comment to moderator  
Reply With Quote
Unread 01/13/24, 06:12 PM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 883
Uploads: 21
Woops, must have removed that line when doing some refactoring. Thanks for investigating, and I've uploaded the fix
Originally Posted by RomaNTIC
Originally Posted by Frackou
Hi, I have this error when i try to craft



Code:
user:/AddOns/LibLazyCrafting/Provisioning.lua:49: operator .. is not supported for nil .. string
stack traceback:
user:/AddOns/LibLazyCrafting/Provisioning.lua:49: in function 'LLC_CraftProvisioningItemByRecipeIndex'
user:/AddOns/LibLazyCrafting/Provisioning.lua:85: in function 'LLC_CraftProvisioningItemByRecipeId'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:1460: in function 'WritWorthyInventoryList.EnqueueLLC'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:1412: in function 'WritWorthyInventoryList:Enqueue'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:843: in function 'WritWorthyInventoryList_EnqueueToggled'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:513: in function 'toggleFunction'
/EsoUI/Libraries/ZO_Templates/ButtonTemplates.lua:278: in function 'ZO_CheckButton_OnClicked'
ESOMRL_ExportFrameKnownBox_Clicked:3: in function '(main chunk)'
I have the same, when try to put provisioning recipe in the queue. Try this:
1. Open file "Provisioning.lua"
2. Find the row 84. It should be as follows
Code:
local recipeListIndex, recipeIndex = GetItemLinkGrantedRecipeIndices(recipeLink)
3. Just before this row insert another row with the following text:
Code:
local recipeLink = toRecipeLink(recipeId)
So rows 84 and 85 should look like this:
Code:
local recipeLink = toRecipeLink(recipeId)
local recipeListIndex, recipeIndex = GetItemLinkGrantedRecipeIndices(recipeLink)
Report comment to moderator  
Reply With Quote
Unread 01/12/24, 01:37 PM  
RomaNTIC

Forum posts: 1
File comments: 5
Uploads: 0
Originally Posted by Frackou
Hi, I have this error when i try to craft



Code:
user:/AddOns/LibLazyCrafting/Provisioning.lua:49: operator .. is not supported for nil .. string
stack traceback:
user:/AddOns/LibLazyCrafting/Provisioning.lua:49: in function 'LLC_CraftProvisioningItemByRecipeIndex'
user:/AddOns/LibLazyCrafting/Provisioning.lua:85: in function 'LLC_CraftProvisioningItemByRecipeId'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:1460: in function 'WritWorthyInventoryList.EnqueueLLC'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:1412: in function 'WritWorthyInventoryList:Enqueue'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:843: in function 'WritWorthyInventoryList_EnqueueToggled'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:513: in function 'toggleFunction'
/EsoUI/Libraries/ZO_Templates/ButtonTemplates.lua:278: in function 'ZO_CheckButton_OnClicked'
ESOMRL_ExportFrameKnownBox_Clicked:3: in function '(main chunk)'
I have the same, when try to put provisioning recipe in the queue. Try this:
1. Open file "Provisioning.lua"
2. Find the row 84. It should be as follows
Code:
local recipeListIndex, recipeIndex = GetItemLinkGrantedRecipeIndices(recipeLink)
3. Just before this row insert another row with the following text:
Code:
local recipeLink = toRecipeLink(recipeId)

So rows 84 and 85 should look like this:
Code:
local recipeLink = toRecipeLink(recipeId)
local recipeListIndex, recipeIndex = GetItemLinkGrantedRecipeIndices(recipeLink)
Last edited by RomaNTIC : 01/12/24 at 01:54 PM.
Report comment to moderator  
Reply With Quote
Unread 01/12/24, 12:15 PM  
Frackou
 
Frackou's Avatar

Forum posts: 6
File comments: 102
Uploads: 0
Hi, I have this error when i try to craft



Code:
user:/AddOns/LibLazyCrafting/Provisioning.lua:49: operator .. is not supported for nil .. string
stack traceback:
user:/AddOns/LibLazyCrafting/Provisioning.lua:49: in function 'LLC_CraftProvisioningItemByRecipeIndex'
user:/AddOns/LibLazyCrafting/Provisioning.lua:85: in function 'LLC_CraftProvisioningItemByRecipeId'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:1460: in function 'WritWorthyInventoryList.EnqueueLLC'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:1412: in function 'WritWorthyInventoryList:Enqueue'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:843: in function 'WritWorthyInventoryList_EnqueueToggled'
user:/AddOns/WritWorthy/WritWorthy_Window.lua:513: in function 'toggleFunction'
/EsoUI/Libraries/ZO_Templates/ButtonTemplates.lua:278: in function 'ZO_CheckButton_OnClicked'
ESOMRL_ExportFrameKnownBox_Clicked:3: in function '(main chunk)'
Report comment to moderator  
Reply With Quote
Unread 12/29/23, 06:36 AM  
ApoAlaia

Forum posts: 6
File comments: 136
Uploads: 0
Originally Posted by Dolgubon
Originally Posted by ApoAlaia
I have noticed that despite having the relevant materials at hand and meeting the necessary pre-requisites to craft the items Writworthy will not craft some queued epic jewellery MWs with a 60+ voucher yield.

I say some because I don't know if this affects all MWs with that kind of yield; I only encountered four 'stubborn' ones in this batch of 200+ epic jewellery MWs and the only thing they seemed to have in common was the voucher yield.

Would it be possible to look into this at some point please?

This would be something to post on Writ Worthy. If it's crafting some MWs but not others, that means it's unlikely to be a problem with LLC. That said, double check that you actually are able to craft those items, it's probably not something to do with the addon if you crafted 196+ writs without issue.
I am; I crafted them 'manually' once it became clear that WW was not going to budge and handed them in without issue.

Furthermore I asked around just in case this was a 'me' problem however other fellow players had experienced the same behaviour.

Said that if this is down to WW I think is probably best to just... well, continue crafting them manually.

Thank you for taking the time to reply
Last edited by ApoAlaia : 12/29/23 at 06:45 AM.
Report comment to moderator  
Reply With Quote
Unread 12/29/23, 02:50 AM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 883
Uploads: 21
Originally Posted by wolfstar
I updated the lib today, and got the below when crafting.



Strangely, if i exit the station and go back, everything crafts just fine.
It's probably fixed, but let me know if you still see the error.


Originally Posted by sshogrin
Can we add support for the Holiday/Event writs? That would be really awesome!!!

Thanks in advance, wonderful work.

LLC does not handle writs. The place to ask would be Writ Worthy, but it is not currently taking requests.
Also, for the writs requiring furniture, LLC does not currently craft furniture, and it's not a simple thing to add.


Originally Posted by ApoAlaia
I have noticed that despite having the relevant materials at hand and meeting the necessary pre-requisites to craft the items Writworthy will not craft some queued epic jewellery MWs with a 60+ voucher yield.

I say some because I don't know if this affects all MWs with that kind of yield; I only encountered four 'stubborn' ones in this batch of 200+ epic jewellery MWs and the only thing they seemed to have in common was the voucher yield.

Would it be possible to look into this at some point please?

This would be something to post on Writ Worthy. If it's crafting some MWs but not others, that means it's unlikely to be a problem with LLC. That said, double check that you actually are able to craft those items, it's probably not something to do with the addon if you crafted 196+ writs without issue.
Report comment to moderator  
Reply With Quote
Unread 12/29/23, 12:36 AM  
ApoAlaia

Forum posts: 6
File comments: 136
Uploads: 0
I have noticed that despite having the relevant materials at hand and meeting the necessary pre-requisites to craft the items Writworthy will not craft some queued epic jewellery MWs with a 60+ voucher yield.

I say some because I don't know if this affects all MWs with that kind of yield; I only encountered four 'stubborn' ones in this batch of 200+ epic jewellery MWs and the only thing they seemed to have in common was the voucher yield.

Would it be possible to look into this at some point please?
Last edited by ApoAlaia : 12/29/23 at 12:42 AM.
Report comment to moderator  
Reply With Quote
Unread 12/24/23, 12:32 PM  
sshogrin
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 62
Uploads: 5
Event/Holiday writs

Can we add support for the Holiday/Event writs? That would be really awesome!!!

Thanks in advance, wonderful work.
Report comment to moderator  
Reply With Quote
Unread 11/06/23, 09:17 PM  
wolfstar

Forum posts: 0
File comments: 251
Uploads: 0
I updated the lib today, and got the below when crafting.

user:/AddOns/LibLazyCrafting/Smithing.lua:856: attempt to index a nil value
stack traceback:
user:/AddOns/LibLazyCrafting/Smithing.lua:856: in function 'setCorrectSetIndex_ConsolidatedStation'
user:/AddOns/LibLazyCrafting/Smithing.lua:894: in function 'LLC_SmithingCraftInteraction'
user:/AddOns/LibLazyCrafting/LibLazyCrafting.lua:747: in function 'CraftInteract'
Strangely, if i exit the station and go back, everything crafts just fine.
Last edited by wolfstar : 11/06/23 at 09:19 PM.
Report comment to moderator  
Reply With Quote
Unread 11/04/23, 04:32 PM  
Dolgubon
 
Dolgubon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 408
File comments: 883
Uploads: 21
Re: Error after todays update

Sorry about that, it should be fixed in the newest version.


Originally Posted by PhnxZ
I'm getting the following error after the 3.0862 update:
Code:
user:/AddOns/LibLazyCrafting/Smithing.lua:1463: function expected instead of nil
stack traceback:
user:/AddOns/LibLazyCrafting/Smithing.lua:1463: in function 'compileRequirements'
<Locals> request = [table:1]{smithingQuantity = 1, autocraft = T, reference = 31, useUniversalStyleItem = F, timestamp = 1, Requester = "DolgubonsLazySetCrafter", trait = 19, materialIndex = 8, materialQuantity = 8, style = 4, quality = 4, pattern = 8, setIndex = 583, station = 1, type = "smithing"}, requirements = [table:2]{33253 = 1}, station = 1, matId = 4487, traitLink = "|H0:item:23173:0:1:0:0:0:0:0:0...", improvementLevel = 3, i = 1 </Locals>
(tail call): ?
(tail call): ?
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:270: in function 'addRequirements'
<Locals> returnedTable = [table:1], addAmounts = T, parity = 1 </Locals>
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:399: in function 'addToQueue'
<Locals> requestTable = [table:3]{EnchantQuality = 1, Station = 1, Enchant = ""}, craftMultiplier = 1, pattern = 8, isCP = F, styleIndex = 4, station = 1, trait = 19, setIndex = 583, quality = 4, level = 16, requestTableCopy = [table:4]{Link = "|H1:item:172932:23:16:0:0:0:0:...", Reference = 31, EnchantQuality = 1, Station = 1, Enchant = ""}, CraftRequestTable = [table:5]{1 = 8}, returnedTable = [table:1] </Locals>
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:505: in function 'addPatternToQueue'
<Locals> patternButton = ud, i = 1, shallowTwoItemCopy = user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:409, comboBoxes = [table:6]{}, requestTable = [table:3], pattern = 8, station = 1, trait = 19, traitTable = ud, enchantTable = ud, level = 16, isCP = F, setIndex = 583, quality = 4, craftMultiplier = 1 </Locals>
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:703: in function 'DolgubonSetCrafter.compileMatRequirements'
<Locals> patternButtonSelected = T, i = 1 </Locals>
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:714: in function 'DolgubonSetCrafter.craft'
DolgubonSetCrafterWindowLeftAdd_Clicked:4: in function '(main chunk)'
<Locals> self = ud, button = 1, ctrl = F, alt = F, shift = F, command = F </Locals>
I rolled back to 3.0861 and it's working fine
Report comment to moderator  
Reply With Quote
Unread 11/04/23, 12:23 PM  
silentseashore

Forum posts: 0
File comments: 9
Uploads: 0
Re: Error after todays update

Originally Posted by PhnxZ
I'm getting the following error after the 3.0862 update:
Code:
user:/AddOns/LibLazyCrafting/Smithing.lua:1463: function expected instead of nil
stack traceback:
user:/AddOns/LibLazyCrafting/Smithing.lua:1463: in function 'compileRequirements'
<Locals> request = [table:1]{smithingQuantity = 1, autocraft = T, reference = 31, useUniversalStyleItem = F, timestamp = 1, Requester = "DolgubonsLazySetCrafter", trait = 19, materialIndex = 8, materialQuantity = 8, style = 4, quality = 4, pattern = 8, setIndex = 583, station = 1, type = "smithing"}, requirements = [table:2]{33253 = 1}, station = 1, matId = 4487, traitLink = "|H0:item:23173:0:1:0:0:0:0:0:0...", improvementLevel = 3, i = 1 </Locals>
(tail call): ?
(tail call): ?
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:270: in function 'addRequirements'
<Locals> returnedTable = [table:1], addAmounts = T, parity = 1 </Locals>
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:399: in function 'addToQueue'
<Locals> requestTable = [table:3]{EnchantQuality = 1, Station = 1, Enchant = ""}, craftMultiplier = 1, pattern = 8, isCP = F, styleIndex = 4, station = 1, trait = 19, setIndex = 583, quality = 4, level = 16, requestTableCopy = [table:4]{Link = "|H1:item:172932:23:16:0:0:0:0:...", Reference = 31, EnchantQuality = 1, Station = 1, Enchant = ""}, CraftRequestTable = [table:5]{1 = 8}, returnedTable = [table:1] </Locals>
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:505: in function 'addPatternToQueue'
<Locals> patternButton = ud, i = 1, shallowTwoItemCopy = user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:409, comboBoxes = [table:6]{}, requestTable = [table:3], pattern = 8, station = 1, trait = 19, traitTable = ud, enchantTable = ud, level = 16, isCP = F, setIndex = 583, quality = 4, craftMultiplier = 1 </Locals>
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:703: in function 'DolgubonSetCrafter.compileMatRequirements'
<Locals> patternButtonSelected = T, i = 1 </Locals>
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:714: in function 'DolgubonSetCrafter.craft'
DolgubonSetCrafterWindowLeftAdd_Clicked:4: in function '(main chunk)'
<Locals> self = ud, button = 1, ctrl = F, alt = F, shift = F, command = F </Locals>
I rolled back to 3.0861 and it's working fine
Can confirm, got the same

Code:
user:/AddOns/LibLazyCrafting/Smithing.lua:1463: function expected instead of nil
stack traceback:
user:/AddOns/LibLazyCrafting/Smithing.lua:1463: in function 'compileRequirements'
(tail call): ?
(tail call): ?
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:270: in function 'addRequirements'
user:/AddOns/DolgubonsLazySetCrafter/Crafter.lua:790: in function 'DolgubonSetCrafter.initializeFunctions.initializeCrafting'
user:/AddOns/DolgubonsLazySetCrafter/SetCrafter.lua:120: in function 'DolgubonSetCrafter:Initialize'
user:/AddOns/DolgubonsLazySetCrafter/SetCrafter.lua:187: in function 'DolgubonSetCrafter.OnAddOnLoaded'
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.