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

    • I test with other forge version and this work
    • Also add the latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here
    • Add the crash-report or latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here  
    • Hi, I'm trying to add a chance for the LootTableIdCondition. I've tried to manipulate the AddItemModifier class, but it still doesn't work: public class AddItemModifier extends LootModifier { public static final Supplier<Codec<AddItemModifier>> CODEC = Suppliers.memoize(() -> RecordCodecBuilder.create(inst -> codecStart(inst).and(ForgeRegistries.ITEMS.getCodec() .fieldOf("item").forGetter(m -> m.item)) .and(Codec.FLOAT.fieldOf("chance").forGetter(m -> m.chance)) .apply(inst, AddItemModifier::new))); private final Item item; public AddItemModifier(LootItemCondition[] conditionsIn, Item item) { super(conditionsIn); this.item = item; } @Override protected @NotNull ObjectArrayList<ItemStack> doApply(ObjectArrayList<ItemStack> generatedLoot, LootContext context) { if(context.getRandom().nextFloat() < chance) { generatedLoot.add(new ItemStack(this.item)); } for(LootItemCondition condition : this.conditions) { if(!condition.test(context)) { return generatedLoot; } } generatedLoot.add(new ItemStack(this.item)); return generatedLoot; } @Override public Codec<? extends IGlobalLootModifier> codec() { return CODEC.get(); } } the only problem is the two "chance" are not defined, but when I add a private final Float chance, the AddItemModifier::new is in red underline, and there's an error. Is there a way to solve this, or is there another better way to add a chance to chest loot modifiers?
    • When i join every modapack 1.12.x and i press fullscreen it crash and it continue until reinstall
  • Topics

×
×
  • Create New...

Important Information

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