Jump to content

[1.7.10][Sloved] Help - How do I get a player's target block?


LEGOlord208

Recommended Posts

Hi! I am working on a mod, and I am creating something (I would like to be secret about the mod). I need to know the player's target block for this. Currently I am using

Minecraft.getMinecraft().objectMouseOver

.

Are there a way to do it so it works with mutiplayer? And what would that answer be? I have been looking around for ages after the answer to this.

 

And if I ever helped anyone with anything, let me know

I am a noob in forge

Link to comment
Share on other sites

Hi

 

There is a way, but it's secret.

 

:-)

 

Only kidding.

 

I assume that you want something to happen to the block you're looking at, without clicking on it.

objectMouseOver will work fine with multiplayer, so long as you only use it to do things on the client side.  If you want to do something with it that needs to happen on the client side (for example, make the block change or do something that other players will see), then you need to either reproduce the objectMouseOver calculations on the server, or send a packet from the client telling the server which block the player is looking at.

 

-TGG

 

 

Link to comment
Share on other sites

That would be your task to figure that out.  First person there causes the action.  All cause the action.  The one with the coolest name causes the action.  Whether you do that on client side and send packets or do it all on the server, you will still have to decide who wins.

Long time Bukkit & Forge Programmer

Happy to try and help

Link to comment
Share on other sites

Hi

 

There is a way, but it's secret.

 

:-)

 

Only kidding.

 

I assume that you want something to happen to the block you're looking at, without clicking on it.

objectMouseOver will work fine with multiplayer, so long as you only use it to do things on the client side.  If you want to do something with it that needs to happen on the client side (for example, make the block change or do something that other players will see), then you need to either reproduce the objectMouseOver calculations on the server, or send a packet from the client telling the server which block the player is looking at.

 

-TGG

 

But Minecraft.getMinecraft().mouseOverObject I cant choose the player...?

And if I ever helped anyone with anything, let me know

I am a noob in forge

Link to comment
Share on other sites

That would be your task to figure that out.  First person there causes the action.  All cause the action.  The one with the coolest name causes the action.  Whether you do that on client side and send packets or do it all on the server, you will still have to decide who wins.

 

"Who wins"?!? I don't understand anything with this post.

And if I ever helped anyone with anything, let me know

I am a noob in forge

Link to comment
Share on other sites

Guys, guys....

What about that poor rayTracing?

 

int var9 = Minecraft.getMinecraft().thePlayer.rayTrace(100.0D, 1.0F).blockX;
int var10 = Minecraft.getMinecraft().thePlayer.rayTrace(100.0D, 1.0F).blockY;
int var11 = Minecraft.getMinecraft().thePlayer.rayTrace(100.0D, 1.0F).blockZ;

if(world.getBlock(var9, var10, var11) == Your.block){}

 

And you can use PlayerTickEvent to get the player without pakets.

Link to comment
Share on other sites

Guys, guys....

What about that poor rayTracing?

 

int var9 = Minecraft.getMinecraft().thePlayer.rayTrace(100.0D, 1.0F).blockX;
int var10 = Minecraft.getMinecraft().thePlayer.rayTrace(100.0D, 1.0F).blockY;
int var11 = Minecraft.getMinecraft().thePlayer.rayTrace(100.0D, 1.0F).blockZ;

if(world.getBlock(var9, var10, var11) == Your.block){}

Looks nice :D I think I will try it out :D

And if I ever helped anyone with anything, let me know

I am a noob in forge

Link to comment
Share on other sites

But why he can't use ready-to-use objectMouseOver without problems with partialTicks?

 

I don't know. Mayebe rayTrace is easier to understand.

But it LEGOlords's choise :)

 

I think I would like to use mouseOverObject right now.

Maybe rayTrace will help me another day :D

And if I ever helped anyone with anything, let me know

I am a noob in forge

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • You shouldn't be extracting the mod .jar, just place it in your mods folder.
    • so basically another rundown of my probelm. Im the admin of a 1.20.1 modded server. Were using forge 47.2.0 but tested this issue in other forge versions too on sevrer and client side. so the forge version isnt the issue. The bug happens in following instances. Were using the attacks of the jujutsucraft mod by orca normally. And for everyone that stands there nothing changes. But everyone who wasnt in the chunks before or who relogins again those chunks will appear invisible for the most part. I tried fixing this be removing and adding following mods in many combinations. Embeddium, canary, memoryleakfix, ai improvements, Krypton reforges, better chunkloading, radium reforged, embeddium plus, farsight, betterchunkloading, oculus I tested most of these mods alone and in differents combinations with each other and without the mods. What i noticed is zhat when i removed  . most invisible chunks will return or semi return. and only ine or two chunks stay invisible. I rechanged those mids mostly on the cöient side but also some in the serveside. Ir most likely isnt an issue with another non performance mod since i noticed this thing with embeddium. Ans also the problem wasnt there im the beginning of the server. Granted since then we updated some of the mods that add content and their lib mod. But i went to every big mods discord and community that we have and i didnt find someone else havinf that chunk problem. Heres the link to a video of the Problem. https://streamable.com/9v1if2     heres the link to the modlist: https://ibb.co/myF8dtX     Pleaee im foghting for months with this problem. All the performance mods kn the modlist are for sure not the issue i tested without all of them.
    • It looks like you're only setting the health if the thing you are hitting is a player.  
    • It sounds like you accidentally have two items that are both named "orange". Ensure that you give items unique names in the string when you register them. That's one of the more annoying errors to track down if you don't know what's causing it, though.
    • when i tried downloading blockfront from curseforge for version 1.20.1 i get the winrar file  and that i extract and i just get the "manifest.json" file no mod when exctracted
  • Topics

×
×
  • Create New...

Important Information

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