Jump to content

Event for when an object is within Player Reach (Reactive Crosshair mod idea)


FreedomsFlame

Recommended Posts

I've been hunting through the class files and honestly have probably looked past it a thousand times, but where is the event for when something is within the player's reach (when if it's a block it puts the frame around it)? I'm trying to make a reactive crosshair mod that will change the crosshair based on what you are aiming at and what item you are wielding (pickaxe icon, axe icon, sword icon when mobs are within reach, hammer when holding and aiming at a block, hand icon when aiming at a usable object like a button, door or lever, and a looting icon when aiming at chests). Help would be much appreciated!

Link to comment
Share on other sites

You can use

EntityPlayer#rayTrace(distance,1)

to get a MovingObjectPosition which has the block coords of the block hit.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

Since your code will be client side for the rendering, you can use Minecraft.getMinecraft().objectMouseOver, which is the current MovingObjectPosition as determined by the EntityRenderer. Use it during RenderGameOverlayEvent.Pre for event.type==ElementType.CROSSHAIRS, and you won't have to do any calculations yourself.

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.