v1.0.3
  • GitHub

Navigation

  • Home
  • Getting Started
    • Scripting
    • Tutorial - First Script
    • Tutorial - For Loops
  • Commands
    • enchant
    • fluid
    • hand
    • inventory
    • ore
    • recipe
    • te (Thermal Expansion)
  • Actions
    • Vanilla
      • furnace
      • recipes
    • Just Enough Items
      • jei
    • Thermal Expansion
      • Devices
        • te.collector
        • te.coolant
        • te.diffuser
        • te.factorizer
        • te.fisher
        • te.tapper
      • Machines
        • te.compactor
        • te.crucible
        • te.furnace
        • te.insolator
        • te.pulverizer
        • te.sawmill
        • te.smelter
          • add
          • remove
  • Arguments
    • all
    • boolean
    • float
    • fluid
    • ingredient
    • integer
    • item
    • null
    • ore
    • string
  • Roadmap
  • Changelog

te.smelter

Tweaks involving the Induction Smelter from Thermal Expansion.

Note

The smelter command can be used to view recipes.



add

te.smelter.add : item output, item inputA, item inputB, integer energy
te.smelter.add : item output, item inputA, item inputB, item secondaryOutput, integer secondaryChance, integer energy

Adds a recipe to the Induction Smelter.

Example

#convert diamond and coal to emerald, with a 50% chance of getting an apple
te.smelter.add : item(minecraft:emerald), item(minecraft:diamond), item(minecraft:coal), item(minecraft:apple) 50, 2000;



remove

te.smelter.remove : all *
te.smelter.remove : item inputA, item inputB

Remove all or selected items.

Example

#disable all recipes
te.smelter.remove : *;

#disable the recipe for diamond and coal
te.smelter.remove : item(minecraft:diamond), item(minecraft:coal);


Built with MkDocs. Theme created by MinecraftForge. Hosted by Read the Docs.