Jump to content

sebastiansan

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by sebastiansan

  1. As of now this is what I got: Code using the interactingLivingEntity method: public ActionResultType interactLivingEntity(ItemStack itmStack, PlayerEntity playerEntity, WolfEntity wolf, Hand hand) { itmStack = playerEntity.getItemInHand(hand); wolf = (WolfEntity) playerEntity.getEntity(); if (wolf instanceof WolfEntity) { if (wolf.isTame() && wolf.getOwner() == playerEntity) { wolf.getAttribute(Attributes.MAX_HEALTH).setBaseValue(wolf.getHealth() + 2); if (!playerEntity.isCreative()) { itmStack.shrink(1); return super.interactLivingEntity(itmStack, playerEntity, wolf, hand); } } } return super.interactLivingEntity(itmStack, playerEntity, wolf, hand); }
  2. I'm trying to make an item that interacts with a tamed mob, primarily a wolf, by right clicking with the item in hand and crosshair pointing on the wolf (like the bone does with a untamed wolf). I've tried using the interact method and using interact events, but nothing works. I'm not sure of what I'm doing, but I've everything I could find on the internet for the past two months and have gotten nowhere. I would appreciate the help.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.