Recent content by leonrobi

  • After careful consideration and due to limited usage, we’ve made the decision to discontinue the PaperMC forums. Moving forward, we recommend using Hangar for plugin uploads, and for all other community discussions and support, please join us on Discord.
  1. L

    Solved Finding out when a pathfinding goal is reached

    Solved using NMS but this can be done without NMS private var movingLock = false override fun tick() { super.tick() if (this.deltaMovement.x == 0.0 && this.deltaMovement.z == 0.0) { if (movingLock) { Bukkit.broadcastMessage("Stopped moving.")...
  2. L

    Solved Finding out when a pathfinding goal is reached

    Is there any way or event that tells you when a pathfinding goal has been reached?