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
          • plate.add
          • gear.add
          • coin.add
          • all.remove
          • plate.remove
          • gear.remove
          • coin.remove
        • 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.compactor

Tweaks involving the Compactor from Thermal Expansion.

Note

The compactor command can be used to view recipes.



plate.add

te.compactor.plate.add : item output, item input, integer energy

Adds a plate recipe to the compactor.

Example

#convert diamond into emerald
te.compactor.plate.add : item(minecraft:emerald), item(minecraft:coal), 500;



gear.add

te.compactor.gear.add : item output, item input, integer energy

Adds a gear recipe to the compactor.

Example

#convert diamond into emerald
te.compactor.gear.add : item(minecraft:emerald), item(minecraft:coal), 500;



coin.add

te.compactor.coin.add : item output, item input, integer energy

Adds a coin recipe to the compactor.

Example

#convert diamond into emerald
te.compactor.coin.add : item(minecraft:emerald), item(minecraft:coal), 500;



all.remove

te.compactor.all.remove : all *
te.compactor.all.remove : item input

Removes a recipe from the compactor.

Note

The ‘all’ list is a special list that is added to the plate list on runtime, it does not add to all categories like expected.

Example

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

#disable the diamond recipe
te.compactor.all.remove : item(minecraft:diamond);



plate.remove

te.compactor.plate.remove : all *
te.compactor.plate.remove : item input

Removes a plate recipe from the compactor.

Note

Some items (for instance blaze rods) are added to the ‘all’ list and not the plate list, use the all.remove command if this fails to work.

Example

#disable all recipes
te.compactor.plate.remove : *;

#disable the diamond recipe
te.compactor.plate.remove : item(minecraft:diamond);



gear.remove

te.compactor.gear.remove : all *
te.compactor.gear.remove : item input

Removes a gear recipe from the compactor.

Example

#disable all recipes
te.compactor.gear.remove : *;

#disable the diamond recipe
te.compactor.gear.remove : item(minecraft:diamond);



coin.remove

te.compactor.coin.remove : all *
te.compactor.coin.remove :  input

Removes a coin recipe from the compactor.

Example

#disable all recipes
te.compactor.coin.remove : *;

#disable the diamond recipe
te.compactor.coin.remove : item(minecraft:diamond);


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