Started by
paulr
on
Topic category: Help with Minecraft modding (Java Edition)
I have a boss mob, which shoot 1 big projectile, I want it to only throw it again after it pick the projectile up. The projectile is pick-upable, how can I check if it had picked it up?
Edited by paulr on Fri, 05/08/2026 - 17:06
Need to use a procedure to activate after they shoot, then make them find path towards, nearest entity of type your projectile. Then if the entity doesn't automatically pickup the projectile, you can check for whether they are at the same coordinate. If so you despawn the projectile and then allow the boss to shoot again.
Thanks!