Electromagnetic Separator is not new to GT 5.09. That was added in 5.03k.
[GT-5.09.** & Minetweaker/Crafttweaker Addon] Addon Version 1.7.5- Adding custom Recipes for all Gregtech 5 machines (Now with Fusion Reactor and Ordict support)
-
-
So first Ordicted version is out. Not be tested now.
1.2.0Available in the first post.
Need to be tested with all machines recipes. Save your scripts before using this version not sure if it works.
Erros and bugs reported to git please:
https://github.com/GTNewHorizo…etweaker-Gregtech-5-Addon -
-
should be you need to test it with version 1.2.0.
-
should be you need to test it with version 1.2.0.
Exactly what I did. To inform you 1.2.0 of GTTweaker is working as intended with Ore Dctionary. TestOk at least with bender. -
If this is working i think the other machines will work too. Only the Sifter, Pulveriser, Arc Furnace, Plasma Arc Furnace have to be extra testet.
-
And there we go this Machines not work with 1.2.0 for the Moment Sifter, Pulveriser, Arc Furnace and Plasma Arc Furnace.
-
-
The Pyroluse Oven take the recipe but throw out some error. The other machines not woring i test it too. I need to fix it but not sure how long time it needs.
-
So version 1.2.1 is up.
I hope i fix the Ordict support.
-
Version 1.2.2 is out.
fix pyrolyse oven spelling.
import mods.gregtech.PyrolyseOven;
PyrolyseOven.addRecipe();
-
The OreDict support doesnt work for me...
"ERROR: Not an ingredient with a single item: <ore:craftingPiston>"
Here the Code:
[Code]
val Barrel = <JABBA:barrel>;val Piston = <ore:craftingPiston>;
val StorageUpgrades = [ <JABBA:upgradeCore>, <JABBA:upgradeCore:4>, <JABBA:upgradeCore:5>, <JABBA:upgradeCore:6>, <JABBA:upgradeCore:8>, <JABBA:upgradeCore:9> ] as IItemStack[];
Assembler.addRecipe(StorageUpgrades[0], Barrel, Piston, 100, 3);
-
The OreDict support doesnt work for me...
"ERROR: Not an ingredient with a single item: <ore:craftingPiston>"
Here the Code:
Code
Display Moreval Barrel = <JABBA:barrel>; val Piston = <ore:craftingPiston>; val StorageUpgrades = [ <JABBA:upgradeCore>, <JABBA:upgradeCore:4>, <JABBA:upgradeCore:5>, <JABBA:upgradeCore:6>, <JABBA:upgradeCore:8>, <JABBA:upgradeCore:9> ] as IItemStack[]; Assembler.addRecipe(StorageUpgrades[0], Barrel, Piston, 100, 3);
Use this instead:
Code
Display Moreval Barrel = <JABBA:barrel>; val craftingPiston = <ore:craftingPiston>; val StorageUpgrades = [ <JABBA:upgradeCore>, <JABBA:upgradeCore:4>, <JABBA:upgradeCore:5>, <JABBA:upgradeCore:6>, <JABBA:upgradeCore:8>, <JABBA:upgradeCore:9> ] as IItemStack[]; for Piston in craftingPiston.items { Assembler.addRecipe(StorageUpgrades[0], Barrel, Piston, 100, 3); }
-
Ok... Thank you
-
There is a beta release. maybe someone test it because i dont have the time atm.
https://github.com/GTNewHorizo…-5-Addon/releases/tag/1.4
bug reports to github please.
Thanks
-
Could you pls add a feature to add own gregtech materials?
-
Not possible for my limited Java knowledge. You can add it directly into Gt code without much Java knowledge.
-
May I ask, is there a way to remove a fusion reactor recipe using Minetweaker scripts? I tried this but apparently it doesn't work.
mods.gregtech.FusionReactor.recipes.remove(<liquid:plasma.oxygen>);
-
May I ask, is there a way to remove a fusion reactor recipe using Minetweaker scripts? I tried this but apparently it doesn't work.mods.gregtech.FusionReactor.recipes.remove(<liquid:plasma.oxygen>);
Try to set the value in the config to 0 under Fuel4 in the recipe onfigs
Thats it. Gt Tweaker anct remove recipe Gt not let me.
-
Not sure if it's bug or a feature, but when i add recipe into the machine and raw materials using ore dictionary (<ore:dustCopper> * 9), the recipe comes up, but without taking amount into calculation. Takes 1 instead of 9. But if i am using straight up name of the item (<gregtech:gt.metaitem.01:2345> * 9) - the amount is correct.