Posted August 27, 201411 yr 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!
August 27, 201411 yr 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/
August 27, 201411 yr 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. http://i.imgur.com/NdrFdld.png[/img]
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.