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
          • add
          • remove
        • 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
  • Arguments
    • all
    • boolean
    • float
    • fluid
    • ingredient
    • integer
    • item
    • null
    • ore
    • string
  • Roadmap
  • Changelog

te.collector

Tweaks involving the Insightful Condenser from Thermal Expansion.

Note

The collector command can be used to view recipes.



add

te.collector.add : item item, integer xp, integer multiplier

Adds a catalyst to the Insightful Condensor with provided experience bonus and production multiplier.

The production multiplier works in the form : 1 + (multiplier / 100), so for example 150 would give a multiplier of 2.5x.

Example

#adds diamond to the catalysts, with 500 xp and x4 multiplier
te.collector.add : item(minecraft:diamond), 500, 300;



remove

te.collector.remove : all *
te.collector.remove : item item

Remove all or selected items.

Example

#disable all catalysts
te.collector.remove : *;

#disable the catalyst for diamond
te.collector.remove : item(minecraft:diamond);


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