Item Production Lib
Modby Daripher
Mod dev tools for tracking item production
Type
Mod
CurseForge Downloads
10,950,088
CurseForge ID
950401
Last Updated
Sep 10, 2026
Description
Adds event ItemProducedEvent that allows tracking the moment the item was produced by player or block entity.
Can be used with custom crafting methods so that other mods can track it.
Q: What is the difference between this event and ItemSmeltedEvent or ItemCraftedEvent?
A: These forge events are fired the moment you take items from a slot. ItemProducedEvent is fired whenever the item is created.
How to use the event as a mod dev:
{
// item has been produced by your block entity here
// make sure to override the result with the one from the event
stack = ItemProductionLib.itemProduced(stack, blockEntity);
}
OR
{
// item has been produced by player here
// make sure to override the result with the one from the event
stack = ItemProductionLib.itemProduced(stack, player);
}
Recommended Gear
AffiliateHardware and extras that pair well with this mod.
As an Amazon Associate I earn from qualifying purchases.
Similar Mods
Security Craft
Adds plenty of blocks and items to defend and secure your base with.
Extra Utilities
Just a bunch of useful things
Brandon's Core
This is the core mod that will be used by most of my mods from now on
Reborn Core
Powering Team Reborn
Explorer's Compass
Explorer's Compass is an item that allows you to locate structures anywhere in the world.
ShatterLib | OctoLib
Collection of shared code for Shatterbyte mods