Posts by DreamMasterXXL
-
-
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.
You dont need the null
BlastFurnace.addRecipe([<gregtech:gt.metaitem.01:2819>], <gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:2020>, 500, 480, 2000);
would be ok too.GT Tweaker 1.0.1 is for Minetweaker 3.0.10
GT Tweaker 0.7.6 is for Minetweaker 3.0.9CI test your recipes with my settings.
-
In v1.0.1 BF script for Graphene does not work at all unfortunately.
I change a lot from Version 0.7.6 to 1.0.1.
Maybe you can post your scripts here.
I change BlsatfurnaceLiq to Blastfurnace.
Codeimport mods.gregtech.BlastFurnace; BlastFurnace.addRecipe(output, output stack2, input1, input2, durationTicks, euPerTick, temperature);
orCodeBlastFurnace.addRecipe([output1, output2], input1, input2, durationTicks, euPerTick, temperature);
orCodeBlastFurnace.addRecipe(output1, output2, liquidInput, inpu1, input2, durationTicks, euperTick, heat);Wich Version Gregtech are you using?
-
-
-
Dunno if you want it or not, but I have a config for Aether 2 mod. GT doesn't have Aether 2 materials so I had to improvise (no long processing chain for aether materials), but I think it works fine.
Edit: Wait just realised I actually missed something, one second...
EDIT2: HERE IT IS! (it's for GT5/U I assume that's fine).
Thanks.
I add this to Git allready.
-
Okay so when I looked at the flour recipe from wheat, there were two recipes for macerator and pulverizer separately.
First I added the macerator recipes and then I tried adding the pulverizer it only showed the macerator. Ofc the recipe worked for pulverizer too even though it didn't show.
In order to make them both work and show up you need to add the pulverizer recipes first and the macerator recipes after.So it works now. Interesting fact with the load order. Have a similar problem before. Good to know.
-
The syntax looks ok.
Codepublic static void addRecipe(IItemStack[] outputs, IItemStack input, int[] outChances, int durationTicks, int euPerTick)
Did you import the Pulveriser?
Which Version of Minetweaker and GT Tweaker do you using ?
In some cases the recipes do not shown because there is one of the ingredientes be a part of a pulveriser recipes all ready.
I see i make a spelling mistake but you using pulverizer cant see the error here (pulverizer instead of pulveriser) -
-
-
-
-
-
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);Maybe using BlasFurnaceLiq from my Mod. It would work with a singel line. I using Blas Furnace in my scripts too without any errors or missing recipes.
-
Example:
BlastFurnace.addRecipe(output, input1, input2, durationTicks, euPerTick, temperature);My Script:
BlastFurnace.addRecipe(<gregtech:gt.metaitem.01:2819>, <gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:2020>, 500, 480, 2000);So whats wrong than?
Yes sorry that was my fault.
Did you try ?
CodeBlastFurnace.addRecipe([output1, output2], input1, input2, durationTicks, euPerTick, temperature);Works with only one Output too.
-
New Script:
import mods.gregtech.BlastFurnace;
BlastFurnace.addRecipe(<gregtech:gt.metaitem.01:2819>, <gregtech:gt.metaitem.01:2865>, <gregtech:gt.metaitem.01:2020>, 500, 480, 2000);No Errors but no effect... strange
This are valid formats:
CodeBlastFurnace.addRecipe(output, input1, input2, durationTicks, euPerTick, temperature); BlastFurnace.addRecipe([output1, output2], input1, input2, durationTicks, euPerTick, temperature);If you need liquid support try my Minetweaker Addon Mod GT Tweaker
-
Display More
There's a bug where EnderZoo doesn't recognise the Vajra as a shovel. They suggested adding this to the item's code:
@Override
public Set<String> getToolClasses(ItemStack stack) {
Set<String> set = Sets.newHashSet("pickaxe");
set.add("shovel");
set.add("axe");
return set;
}They not have any harvest level too (Iguana Tweaks conflict)
-
-
-