Posted March 22, 201312 yr how do i add multiple food potion effects upon eating one food RotBucket = new RotBucket(555, -6, true).setPotionEffect(9, 3, 10, 3F).setPotionEffect(15, 3, 2, 3F).setPotionEffect(19, 3, 1, 3F).setMaxStackSize(1).setUnlocalizedName("RotBucket").setCreativeTab(tabModded); this is what i have but it only gives one effect, what am i doing wrong? Use examples, i have aspergers. Examples make sense to me.
March 22, 201312 yr Hi, In your RotBucket class, add this : public ItemStack onFoodEaten(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer) { par3EntityPlayer.addPotionEffect((new PotionEffect(Potion.nightVision.getId(), 100, 0))); par3EntityPlayer.addPotionEffect((new PotionEffect(Potion.wither.getId(), 100, 0))); }
March 22, 201312 yr Author you have been thanked Use examples, i have aspergers. Examples make sense to me.
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.