Posts by Sapient
-
-
-
Should we change the code or change the wiki, or am I just misinterpreting something?
MHO is - multiblock machines should be more efficient than single block. So wiki should be changed, not code.
PS I'm still using array of HP Coal Boilers and HP Lava Boilers (they built long before GT5U was created) and need good reason to replace them by multiblock boilers
Same for HeatExchanger/Turbines. Still using IC variant. -
-
-
Parameters marked as red are optional and can be left out
But 2-nd input is present in script and its empty in recipe of EBF.
BTW changing input orderCodeBlastFurnace.addRecipe([<gregtech:gt.metaitem.01:2819>], [<gregtech:gt.metaitem.01:11020>, <gregtech:gt.metaitem.01:2865>], 500, 480, 2000);
adds recipe Silicon Ingot -> Graphene dust. So something wrong with 2-nd input. It does not work. -
-
Found error in Wiki
Code//Graphene out of Silicon and Graphite with Oxygen import mods.gregtech.BlastFurnace; BlastFurnace.addRecipe([<gregtech:gt.metaitem.01:2819>], <liquid:oxygen> * 1000, [<gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:2020>], 500, 480, 2000);
Silicon ingots is
<gregtech:gt.metaitem.01:11020>
not
<gregtech:gt.metaitem.01:2020>And actually there must be no oxygen for reaction Si + C -> SiC.
With oxygen it would be Si + C + 4O -> SiO2 + CO2.Actually the way to produce Graphene should have two steps:
1) Si + C -> SiC in Blast Furnace.
2) SiC -> Graphene in Laser Engraver
But i have no way to add new item unfortunately.Upd
And seems like something wrong with second input parameter in GTTweaker-1.7.10-1.0.6.CodeBlastFurnace.addRecipe([<gregtech:gt.metaitem.01:2819>], [<gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:11020>], 500, 480, 2000);
Adds recipe with only one input (Graphite dust -> Grtaphene dust) -
-
Script:
import mods.gregtech.BlastFurnace;
BlastFurnace.addRecipe([<gregtech:gt.metaitem.01:2819>, null], <gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:2020>, 500, 480, 2000);gregtech_1.7.10-5.08.29
GTTweaker-1.7.10-1.0.1Same GT + GTTweaker-1.7.10-0.7.6 + double recipe adding string in script + reentering world = it works.
-
-
-
-
-
Hey guys is there any way to auto-refill cauldrons without Thaumcraft or Thermal Expansion? If there isn't then perhaps it would be a good idea to add a way to do that in GT, seeing how washing dusts is such an integral part of the mod.
Let me guess... u don't know dusts can be dropped in cauldron (and washed) by stack at ones?
-
Complete folder from MultiMC\instances\ with Test World
https://drive.google.com/file/…xQjlHUWs/view?usp=sharing -
-
Possible Bug
So i found the way to make it work, stable and repeatable:
1. We need two strings in script. It may be written by any template or be the same both.CodeBlastFurnace.addRecipe(output, input1, input2, durationTicks, euPerTick, temperature); BlastFurnace.addRecipe([output1, output2], input1, input2, durationTicks, euPerTick, temperature);
2. We need load Minecraft, enter the world, quit it and enter back again
It works. My EBF have new recipe now (Graphene from Graphite + Silicon).But it does not work if script contains only single line and if we enter to the world 1-st time. Seems like bug.
gregtech_1.7.10-5.08.27
GTTweaker-1.7.10-0.7.6
Script:Codeimport mods.gregtech.BlastFurnace; BlastFurnace.addRecipe(<gregtech:gt.metaitem.01:2819>, <gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:2020>, 500, 480, 2000); BlastFurnace.addRecipe(<gregtech:gt.metaitem.01:2819>, <gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:2020>, 500, 480, 2000);
-
Did you try ?
BlastFurnace.addRecipe([output1, output2], input1, input2, durationTicks, euPerTick, temperature);After some number of reentering world and reloading script it works with two lines:
BlastFurnace.addRecipe(<gregtech:gt.metaitem.01:2819>, <gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:2020>, 500, 480, 2000);
BlastFurnace.addRecipe([<gregtech:gt.metaitem.01:2819>, null], <gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:2020>, 500, 480, 2000);But i have not stable algorithm to do it again. After relaunching minecraft is does not work again.
-