Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[1.12.2] Does the event exist when the bait is bitten by fishing in the water?

Featured Replies

Posted

I want to do something when the fish bites the bait. However, it is difficult to find related events.

Is there related events or any other way?

Edited by waker

  • Author

@LeoCTHno, What I want to do is try to show some effect when the fish is biting the bait.

Edited by waker

I think you can wait a little.

All these internal stuff is likely related with mind-boggling collision checks, weird-named variables (like p_190621_1_ and stuff like that) all confuse you.

If I'm you I just simply gave up and forget about it.

lol

20 minutes ago, LeoCTH said:

I think you can wait a little.

All these internal stuff is likely related with mind-boggling collision checks, weird-named variables (like p_190621_1_ and stuff like that) all confuse you.

If I'm you I just simply gave up and forget about it.

lol

Its not to its weirdly named, its just not in mcp mappings

What are you guys talking about? In 1.12,2 the code in EntityFishHook is easy to understand. There is no SRG name mapping missing.

 

There is a field called caughtEntity which you can check each tick to see for first tick it is not null and then that would be the moment it has hooked something and you can do you effect.  You can alternatively check if the EntityFishHook.getState() == State.HOOKED_IN_ENTITY.

 

So you can do all this by:

1) Creating a global map of entity fish hook instance UUIDs to boolean (to handle the case where there are several people fishing in the view.

2) Handle either player tick event or world tick event and look through the entity list for any instanceof EntityFishHook and if it is not in the map add it, and if it is in the map check if the boolean is false but caughtEntity != null in which case set the boolean to true and if on the client side also create the effect.

3) clean up the map by removing any entity fish hook UUIDs that are no longer in the world.

Edited by jabelar

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.