Very nice Thanks. I will test it.
Posts by DreamMasterXXL
-
-
-
-
-
-
-
-
I am not fan of gt5 difficulty, gt4 enough for me. So i make some things in gt5 easier for my server and things from other mods harder.
I update script on Github, add few options in it, now you easily can set pipes output to 1.
I add your Builcraft scripts to:
https://github.com/Dream-Master/M…t/Buildcraft.zsif you want i add the other Scripts say it to me.
-
-
-
-
-
Hey guys,
this is a bit off topic, but since most of you guys are here because of performance optimizations I thought I'd post here as well...
And it may also interest Player. Maybe you could have a look at it and give your opinion?Check this out: http://mods.stjerncraft.com/tickdynamic/
I've been running it for two days now in tandem with fastcraft without any issues. On the contrary my tick rate is exceptionally good.
Sorry for derailing the thread, back to topic of Fastcraft being the best thing since yoga pants.
This sounds interesting. I will try it too.
-
-
-
-
-
@ Ultimoos
You need Mod Tweaker also than it will work.
http://minecraft.curseforge.com/mc-mods/220954…r/files/2216745
-
-
I never noticed that private message until now! Yes, I do not mind, actually I encourage passing this to Dream Master. I did not do anything to contribute in this thread other than starting it (that was the plan all along
).
So, yea, you have my blessing.Btw, I tried to use so scripts from github. Looks like Minetweaker does not recognize railcraft.Rolling recipe changes anymore.
You have to remove all Recipes (if there more variants for one item) and than add them back. i not have any problems:
Code
Display More//Created by DreamMasterXXL // --- Rolling Machine --- // --- Iron Plates --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.plate>); // --- Steel Plates --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.plate:1>); // --- Tin Plates --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.plate:2>); // --- Copper Plates --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.plate:3>); // --- Rebar --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 2); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 4); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 4); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 8); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 8); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 16); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 16); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 48); // ---Standart Rail --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail> * 4); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail> * 6); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail> * 6); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail> * 8); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail> * 16); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail> * 32); // --- Advanced Rail --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail:1> * 8); // --- H.S Rail --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail:3> * 8); // --- Reinforced Rail --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail:4> * 8); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail:4> * 32); // --- Electric Rail --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rail:5> * 6); // --- Electric Shunting Wire --- mods.railcraft.Rolling.removeRecipe(<Railcraft:tile.railcraft.machine.delta> * 8); // --- Wood Post --- mods.railcraft.Rolling.addShaped(<Railcraft:tile.railcraft.post> * 4, [[<Railcraft:part.tie>, null, <Railcraft:part.tie>], [<Railcraft:part.tie>, <Railcraft:part.tie>, <Railcraft:part.tie>], [<Railcraft:part.tie>, null, <Railcraft:part.tie>]]); mods.railcraft.Rolling.addShaped(<Railcraft:tile.railcraft.post> * 4, [[<Railcraft:part.tie>, <Railcraft:part.tie>, <Railcraft:part.tie>], [null, <Railcraft:part.tie>, null], [<Railcraft:part.tie>, <Railcraft:part.tie>, <Railcraft:part.tie>]]); // --- Stone Post --- mods.railcraft.Rolling.addShaped(<Railcraft:tile.railcraft.post:1> * 4, [[<minecraft:stone>, null, <minecraft:stone>], [<Railcraft:part.rebar>, <Railcraft:part.rebar>, <Railcraft:part.rebar>], [<minecraft:stone>, null, <minecraft:stone>]]); mods.railcraft.Rolling.addShaped(<Railcraft:tile.railcraft.post:1> * 4, [[<minecraft:stone>, <Railcraft:part.rebar>, <minecraft:stone>], [null, <Railcraft:part.rebar>, null], [<minecraft:stone>, <Railcraft:part.rebar>, <minecraft:stone>]]); // --- Wood Plattform --- mods.railcraft.Rolling.addShaped(<Railcraft:tile.railcraft.post:4>, [[null, <Railcraft:tile.railcraft.slab:37>, null], [null, <Railcraft:tile.railcraft.post>, null]]); // --- Stone Platform --- mods.railcraft.Rolling.addShaped(<Railcraft:tile.railcraft.post:5>, [[null, <Railcraft:tile.railcraft.slab:2>, null], [null, <Railcraft:tile.railcraft.post:1>, null]]); // --- Metal Platform --- mods.railcraft.Rolling.addShaped(<Railcraft:tile.railcraft.post:6>, [[null, <Railcraft:tile.railcraft.slab:5>, null], [null, <Railcraft:tile.railcraft.post:2>, null]]);