Posted March 30, 201312 yr Hey, I want to have another bucket FILLED with the normal bucketEmpty as source! How do I do that? I tried every tutorial! I tried adding this in ItemBucket.class: else if (this.isFull == 0 && movingobjectposition.entityHit instanceof EntityBadAngel) { return new ItemStack(EternalsSwords.bucketBlood); } But doesn't work! any help?
March 30, 201312 yr You can't fill buckets without an event handler permitting your code to do so. Coincidentally, I already have a bucket of blood in my mod, as well as a placeable blood liquid. And a whole class of wooden buckets, because I think buckets should be available earlier in survival mode. Just remember to put the @ForgeSubscribed annotation on any method that accepts an event as a parameter. The event you'll (obviously) be using is the FillBucketEvent.
April 2, 201312 yr You make a class with a method that accepts a FillBucketEvent as a parameter. Put the @ForgeSubscribed annotation above the method. You then have access to all the objects inside the FillBucketEvent. Use those objects to replace the liquid source with air, and actually fill the bucket. Oh, and the register it in your main class with the Forge event bus. And check out Buildcraft's bucket handling code, I'm pretty sure that one is open source.
April 3, 201312 yr Where in buildcraft's source is the bucket handling code? http://www.planetminecraft.com/files/sigs/knarf2011_994229_sig.jpg[/img]
April 3, 201312 yr https://github.com/BuildCraft/BuildCraft And now take a lesson of the magic skill of searching ;-)
April 3, 201312 yr https://github.com/BuildCraft/BuildCraft And now take a lesson of the magic skill of searching ;-) I tried to implement the code in buildcraft, but it didn't work. http://www.planetminecraft.com/files/sigs/knarf2011_994229_sig.jpg[/img]
April 3, 201312 yr Did you register it in your main class? If not, you probably missed something obvious. Event handling is one of the simpler things to do in FML, tbh.
April 4, 201312 yr Did you register it in your main class? If not, you probably missed something obvious. Event handling is one of the simpler things to do in FML, tbh. Thanks! It works Now! Now to fix the other, simpler bugs with flowing acid... http://www.planetminecraft.com/files/sigs/knarf2011_994229_sig.jpg[/img]
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.