What to do with liquid yellorium? (TW2)

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
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.
 
  • Like
Reactions: GamerwithnoGame