Started by
HGPOfficial
on
Topic category: Help with Minecraft modding (Java Edition)
So I just made my first bucket. Woo! Now uhh. Slight issue. I need it to be able to grab any fluid from another mod (let's say for example Mekanism). I want my bucket to be able to pick up any fluid that the mod brings with it. How would I go about doing this?
You want your bucket to be able to pick up any possible fluid or liquid of every possible other mod?
Doesn't sound possible with mcreator, although you can get a plugin which adds support for making addons to popular mods. That could help you in creating compatability between your bucket and the mods that that plugin supports.
Otherwise you would most likely need to manually code in every single liquid unless you could deduce what blocks are liquid blocks but I don't know minecraft code/java well enough to give you a proper answer.
The only other way I could think of is by using a tag and adding in external blocks. E.g you would need to add every single liquid block from all the mods you want the bucket to work with manually into the custom tag. Then you could potentially form a procedure to pick up blocks in that tag, but creating the texture for the filled bucket would be difficult without manually making them all.