Jump to content

Make a kill aura script on 1.16.5


Xs19_JulenRa

Recommended Posts

I'm triying to make  a kill aura script on my minecraft mod, and everything goes great, except that the player just don't attacks. Here is my code:

 

public void killAura() {
        ClientPlayerEntity playerEntity = Minecraft.getInstance().player;
        Predicate<Entity> predicate = i -> !(i.equals(playerEntity));
        Minecraft.getInstance().player.attack(Minecraft.getInstance().level.getNearestPlayer(playerEntity.getX(),playerEntity.getY(),playerEntity.getZ(),5000,predicate));

  System.out.println(Minecraft.getInstance().level.getNearestPlayer(playerEntity.getX(),playerEntity.getY(),playerEntity.getZ(),5000,predicate).getName().getString());
    }

That code runs on the client side, so i don't know if i have to make it differently.

 

Edit: It does like it's attacking, but the nearest player doesn't gets damage

Edited by Xs19_JulenRa
Additional information
Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

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