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
          • split.add
          • split.remove
          • combine.add
          • combine.remove
        • te.fisher
        • te.tapper
      • Machines
        • te.compactor
        • te.crucible
        • te.furnace
        • te.insolator
        • te.pulverizer
        • te.sawmill
        • te.smelter
  • Arguments
    • all
    • boolean
    • float
    • fluid
    • ingredient
    • integer
    • item
    • null
    • ore
    • string
  • Roadmap
  • Changelog

te.factorizer

Tweaks involving the Factorizer from Thermal Expansion.

Note

The factorizer command can be used to view recipes.



split.add

te.factorizer.split.add : item output, input input

Add a split recipe to the factorizer.

Example

#split emerald into 9 diamonds
te.factorizer.split.add : item(minecraft:diamond).count(9), item(minecraft:emerald);



split.remove

te.factorizer.split.remove : all *
te.factorizer.split.remove : item input

Remove all split recipes or recipes with the specified input.

Example

#disable all split recipes
te.factorizer.split.remove : *;

#disable splitting emerald
te.factorizer.split.remove : item(minecraft:emerald);



combine.add

te.factorizer.combine.add : item output, input input

Add a combine recipe to the factorizer.

Example

#combine 9 diamonds into and emerald
te.factorizer.combine.add : item(minecraft:emerald), item(minecraft:diamond).count(9);



combine.remove

te.factorizer.combine.remove : all *
te.factorizer.combine.remove : item input

Remove all combine recipes or recipes with the specified input.

Example

#disable all combine recipes
te.factorizer.combine.remove : *;

#disable combining diamonds
te.factorizer.combine.remove : item(minecraft:diamond).count(9);


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