Jump to content

[1.15.2] Knockback help


Time

Recommended Posts

I want to create custom knockback. I have a method and it works in singleplayer. But it does not work in multiplayer. I put a print in the code and saw that not even the print were printed. So that must mean the event didnt fire at all. Its wierd though, since I have a linvingjumpevent in the same class and that event works perfectly fine in multiplayer. So I thought livingknockback would work too.

 

 

@SubscribeEvent

public void onKnockback(LivingKnockBackEvent e) {

 

System.out.println("test");

 

if (e.getEntity == mc.player) {

e.setStrength(kbStrength);

   }

}

 

Edited by Time
Link to comment
Share on other sites

5 hours ago, Ugdhar said:

Please show more of your code, a githup repo is preferred as it's easier to read, and can be cloned/build to help debugging. :)

 

Mostly wondering where you are registering your event handler. :)

github.com/TimeSwitcher/ValueModify

Link to comment
Share on other sites

5 hours ago, Alpvax said:

I am assuming mc is Minecract.getInstance().

If that is the case, how would you expect it to work on a server? Minecraft is a client only class.

Yes thats what mc is. But this mod is client side and the jump events builds on the same code that the knockback event. And that event works on server but not this event. full code: github.com/TimeSwitcher/ValueModify

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.

Announcements



×
×
  • Create New...

Important Information

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