Mod Feedback [By Request] RotaryCraft Suggestions

Gamefury64

New Member
Jul 29, 2019
405
-2
0
V4 is out. The download links will be moved to CurseForge once it works; it is for now on MediaFire.
Sweet. Does it cause a wailia crash like v3? If not, im "suggesting" it :)

Edit: sorry, dont mean to be like those people on your "do not do this unless you want to look like an idiot" saying you should hand over your mod to someone else.

Later: WOOT! It works!
 
Last edited:

RavynousHunter

New Member
Jul 29, 2019
2,784
-3
1
I know its too late for v4, but is there any possibility of being able to turn creosote into lubricant like you can with oil, but maybe with the MFR biofuel-to-ethanol ratio? I've currently got a tonne of creosote just kinda sitting around not being used, and it'd be cool to turn it into emergency lube.
 

Azzanine

New Member
Jul 29, 2019
2,706
-11
0
I know its too late for v4, but is there any possibility of being able to turn creosote into lubricant like you can with oil, but maybe with the MFR biofuel-to-ethanol ratio? I've currently got a tonne of creosote just kinda sitting around not being used, and it'd be cool to turn it into emergency lube.
I don't think creosote oil works like that. Not that Reika's mods are super realistic, but Creosote oil is not used as a lube in RL so I don't think Reika will make it so you can with RoC.

Creosote oil is primarily used as a preservative, it's why it's a requirement for rail ties. As you don't want your rail beds to rot.
It's also used to smoke meat apparently.

But not for lube.
 

Qazplm601

Lord of the Tumbleweeds
Sep 21, 2013
2,754
3,282
308
Where else?
You have a broken line in your zs script somewhere. I am using the two fine.

it works fine without your mods. @SkeletonPunk is also having this issue.
(this is the only one loaded)
val wheatseeds = <minecraft:wheat_seeds>;
val wheat = <minecraft:wheat>;

recipes.addShapeless(wheatseeds, [wheat]);
 

SkeletonPunk

New Member
Jul 29, 2019
2,063
-3
1
it works fine without your mods. @SkeletonPunk is also having this issue.
(this is the only one loaded)
val wheatseeds = <minecraft:wheat_seeds>;
val wheat = <minecraft:wheat>;

recipes.addShapeless(wheatseeds, [wheat]);
Restarting minecraft a few times seemed to have fixed the issue for me, for whatever reason. Also for me it was just that whenever I tried to load a world it just stopped loading and returned me to the title screen, I didn't crash.
 

Reika

RotaryCraft Dev
FTB Mod Dev
Sep 3, 2013
5,079
5,331
550
Toronto, Canada
sites.google.com
it works fine without your mods. @SkeletonPunk is also having this issue.
(this is the only one loaded)
val wheatseeds = <minecraft:wheat_seeds>;
val wheat = <minecraft:wheat>;

recipes.addShapeless(wheatseeds, [wheat]);
Yes, my parser is choking, but neither line there would even trigger.

What exactly does enabling "Tutorial Mode" in the RotaryCraft config do?
Right now, nothing.
 

goreae

Ultimate Murderous Fiend
Nov 27, 2012
1,784
2,649
273
Raxacoricofallapatorius
Yes, my parser is choking, but neither line there would even trigger.
The only thing wrong with that scipt is improper camelCase, which I already scolded him on. There is no reason for that scipt to fail, much less kill minecraft.

Looking at qaz's crash report, it looks like your MT interaction stuff is screwing up something. I have never once gotten a crash from minetweaker 3. Even from a screwed up scipt.
 
  • Like
Reactions: Pyure

Qazplm601

Lord of the Tumbleweeds
Sep 21, 2013
2,754
3,282
308
Where else?
Try removing lines to test which one is broken.
it appears to happen whenever i try to add a recipe using a value.

val dirt = <minecraft:dirt>;
works,

recipes.addShapeless(<minecraft:dirt>, [<minecraft:dirt>]);
works,

val dirt = <minecraft:dirt>;
recipes.addShapeless(<minecraft:dirt>, [<minecraft:dirt>]);
works,

val dirt = <minecraft:dirt>;
recipes.addShapeless(dirt, [dirt]);
kicks to the title.
 

Reika

RotaryCraft Dev
FTB Mod Dev
Sep 3, 2013
5,079
5,331
550
Toronto, Canada
sites.google.com
it appears to happen whenever i try to add a recipe using a value.

val dirt = <minecraft:dirt>;
works,

recipes.addShapeless(<minecraft:dirt>, [<minecraft:dirt>]);
works,

val dirt = <minecraft:dirt>;
recipes.addShapeless(<minecraft:dirt>, [<minecraft:dirt>]);
works,

val dirt = <minecraft:dirt>;
recipes.addShapeless(dirt, [dirt]);
kicks to the title.
And now I know what is going wrong. The parser was never designed for this, because I did not even know this was possible.

Aaaaand back to v3d I go.
...
 

Reika

RotaryCraft Dev
FTB Mod Dev
Sep 3, 2013
5,079
5,331
550
Toronto, Canada
sites.google.com
it appears to happen whenever i try to add a recipe using a value.

val dirt = <minecraft:dirt>;
works,

recipes.addShapeless(<minecraft:dirt>, [<minecraft:dirt>]);
works,

val dirt = <minecraft:dirt>;
recipes.addShapeless(<minecraft:dirt>, [<minecraft:dirt>]);
works,

val dirt = <minecraft:dirt>;
recipes.addShapeless(dirt, [dirt]);
kicks to the title.
Fixed. V4b is coming shortly.