This page relates to Immersive Intelligence, which has built-in support!
CO2 Input
Link to co2-input
The CO2Input
package can be used to add TileEntities, including Multiblocks to the Immersive Intelligence CO2 Collector sources list.
Importing the Package
Link to importing-the-package
ZenScript Copyimport mods.immersiveintelligence.CO2Input;
Adding Multiblocks
Link to adding-multiblocks
Parameters
Link to parameters
Type | Name | Required |
---|---|---|
Type String | Name Classpath | Required Yes |
Type int | Name Time | Required Yes |
Type int | Name Amount | Required Yes |
Type int[] | Name Positions | Required Yes |
To acquire the in-multiblock position, use the command /ct nbt
while having an empty hand looking at a desired multiblock.
Position is the same for all facings and mirroring.
Syntax
Link to syntax
ZenScript Copymods.immersiveintelligence.CO2Input.addMultiblock(String classPath, int time, int amount, int[] pos);
Example
Link to example
ZenScript Copymods.immersiveintelligence.CO2Input.addMultiblock("com.yetanotherimmersiveaddon.blocks.multiblock.ExampleMultiblock", 100, 4824, [1,2,3]);
Adding Tiles
Link to adding-tiles
Parameters
Link to parameters-1
Type | Name | Required |
---|---|---|
Type String | Name Classpath | Required Yes |
Type int | Name Time | Required Yes |
Type int | Name Amount | Required Yes |
Syntax
Link to syntax-1
ZenScript Copymods.immersiveintelligence.CO2Input.addTile(String classPath, int time, int amount);
Example
Link to example-1
ZenScript Copymods.immersiveintelligence.CO2Input.addTile("com.examplemod.tile.ExampleTile", 100, 4824);