#Fishing Rod Hook

4 messages · Page 1 of 1 (latest)

sweet cedar
#
ItemEvents.rightClicked("fishing_rod", (event) => {
  const { player } = event;

  if (player.fishing) {
    let { fishing: hook } = player;
    player.deltaMovement = new Vec3d(hook.x - player.x, hook.y - player.y, hook.z - player.z).scale(0.25);
    player.hurtMarked = true;
  }
});
storm ridge
#

Thank you just what I need but 1 thing is missing that I want to do is it possible to make crappling hook like ray casting it to spot and then propelling the player that way

primal narwhal
smoky sapphire
#

Would be useful for a mod pack if it needed to touch something for you to pull yourself in, instead of being able to do it while it's in the air