Skip to main content
Monitor and react to item creation and modification stations.

🛠️ Event Library

⚙️ Configuration

bench_take_result_event

Triggers when a player removes the result from a crafting table.
recipe
String
Namespace key of the recipe (e.g. minecraft:diamond_sword).
material
Material
Resulting material type.

smelt_event

Triggers when a furnace completes an operation.
input
Material
Source item material (e.g. RAW_IRON).
output
Material
Result item material (e.g. IRON_INGOT).

brewing_stand_brew_event

Triggers when a potion finishes brewing.
ingredient
Material
The ingredient used (e.g. NETHER_WART).
requiredLocation
Position
Specific brewing stand location to monitor.

smithing_table_upgrade_event

Triggers when an item is upgraded with a template.
template
Material
Smithing template used (e.g. NETHERITE_UPGRADE_SMITHING_TEMPLATE).
baseMaterial
Material
The item being upgraded.

💻 Examples

bench_take_result_event:
  material: DIAMOND_SWORD
  actions:
    - message_action:
        message: "<green>You crafted a powerful blade!"