Jump to content

Minecraft forge aim teleportation help?


Splintax01

Recommended Posts

I am making a mod and I've made a staff that teleports you to the block you are looking at when you right click. The teleportation works but it teleports me further than where I aim. Here is my code:

 

public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)

{

int distance = 15;

//moveEntity(x, y, z)

par3EntityPlayer.moveEntity(-distance*Math.sin(Math.toRadians(par3EntityPlayer.rotationYawHead))*Math.cos(Math.toRadians(par3EntityPlayer.rotationPitch)) ,-distance*Math.sin(Math.toRadians(par3EntityPlayer.rotationPitch)) , distance*Math.cos(Math.toRadians(par3EntityPlayer.rotationYawHead))*Math.cos(Math.toRadians(par3EntityPlayer.rotationPitch)));

par3EntityPlayer.setItemInUse(par1ItemStack, this.getMaxItemUseDuration(par1ItemStack));

return par1ItemStack;

}

 

Anyone know a fix? Thanks

Link to comment
Share on other sites

World#clip(...)

 

It performs a raycast against blocks.  A lot of things in vanilla use it to determine what you're looking at.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Inside your onItemRightClick.  And it's a non-static function (use your IDE and codehinting).

 

Keep in mind that the function returns an object of type MovingObjectPosition which will have coordinates for you to use.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Uh

Try ItemBoat, ItemLilypad, BlockFurnace.

 

You can also highlight the function and hit ctrl-shift-g (search workspace for references) and have Eclipse find it for you.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

  • 3 months later...

Uh

Try ItemBoat, ItemLilypad, BlockFurnace.

 

You can also highlight the function and hit ctrl-shift-g (search workspace for references) and have Eclipse find it for you.

 

I just wanted to say that this solved an issue that I was having with rayTrace/Cast against blocks, Thanks!

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.