Item Production Lib
Modby Daripher
Mod dev tools for tracking item production
Type
Mod
CurseForge Downloads
9,391,621
CurseForge ID
950401
Last Updated
Apr 13, 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);
}
Similar Mods
FTB Utilities (Forge)
FTB Utilities is a mod by FTB. It aims to provide several useful utilities within the FTB Platform ranging from friends...
Corail Tombstone
Keeps safe your inventory items in graves on death with many features for better survivability and exploration, in a med...
Compact Machines
Adds one simple game mechanic: Small rooms inside of blocks. It basically gives you the ability to build your contraptio...
Athena
A crossplatform (Forge/Fabric) solution to connected block textures for 1.19.4+
Repurposed Structures (Neoforge/Forge)
Adds more variations of vanilla structures and features such as a Jungle Fortress!
FTB Essentials (Forge & Fabric)
Adds many essential utility commands for servers