M
MarshTheBacca
Guest
For 1.12.2 users, you can use the Crafttweaker mod (continuation of MineTweaker) to create a recipe for this as mentioned above. I decided to make it simple as it's the first time I've used this mod, so I've gone for 1x Yellorium Bucket = 4 Yellorium Ingots.
Here's my script:
val yelBuck=<forge:bucketfilled>.withTag({FluidName: "yellorium", Amount: 1000});
val yelIng=<bigreactors:ingotmetals>;
recipes.addShapeless(yelIng*4,[yelBuck.transformReplace(<minecraft:bucket>)]);
Just copy and paste this into a .zs file and place it in the "scripts" folder in your modpack directory. You can call the file whatever you want and you'll need to restart your game as "/ct reload" or "/mt reload" functionality was removed due to changes in how forge works in 1.12.
Here's my script:
val yelBuck=<forge:bucketfilled>.withTag({FluidName: "yellorium", Amount: 1000});
val yelIng=<bigreactors:ingotmetals>;
recipes.addShapeless(yelIng*4,[yelBuck.transformReplace(<minecraft:bucket>)]);
Just copy and paste this into a .zs file and place it in the "scripts" folder in your modpack directory. You can call the file whatever you want and you'll need to restart your game as "/ct reload" or "/mt reload" functionality was removed due to changes in how forge works in 1.12.