Jump to content

[1.8] Generated Blocks are gone after re-log.


xthepersonx

Recommended Posts

Thank you to anyone who can help me with this... I feel that the answer to this is something silly, but I just can't figure it out...

 

I'm trying to get a structure to automatically get created when you click on a button in a new gui I created when interacting with a new entity that I created. The structure builds correctly, but after I re-log, it's gone. I'm thinking that it's being created on the client side, but not saving on the server side? The reason I'm thinking that is that if I add

 

"if (!Minecraft.getMinecraft().theWorld.isRemote())"

 

Then the structure doesn't generate. When I remove that, the above problem happens...

 

Here's the code that I'm using to generate a structure...

 

package com.persvillagers.village1;

import net.minecraft.client.Minecraft;
import net.minecraft.init.Blocks;
import net.minecraft.util.BlockPos;

public class BurningHouse
{
public static Minecraft mc = Minecraft.getMinecraft();

public void generate()
{
	BlockPos playerPos = mc.thePlayer.getPosition();
	int x = playerPos.getX();
	int y = playerPos.getY();
	int z = playerPos.getZ();
	BlockPos startingPos = new BlockPos(x - 20, y, z - 20);
	int offset = 0;

        while (mc.theWorld.isAirBlock(startingPos) && startingPos.getY() > 2)
        {
            ++offset;
            startingPos = new BlockPos(startingPos.getX(), startingPos.getY() - 1, startingPos.getZ());
        }
        
	for (int var0 = 0; var0 < 5; ++var0)
	{
		for (int var1 = 0; var1 < 5; ++var1)
		{
			BlockPos wall1 = new BlockPos(startingPos.getX() + var0, startingPos.getY() + 20, startingPos.getZ() + var1);
			mc.theWorld.destroyBlock(wall1, false);
			mc.theWorld.setBlockState(wall1, Blocks.planks.getDefaultState());
		}
	}
}
}

Link to comment
Share on other sites

well thanks for the update. I'd rather find out now then when I'm actually testing the stand alone server and have no way to find out where to start looking.

 

I'm looking at the base code, and found this packet : C08PacketPlayerBlockPlacement

 

Can I start working with this, or am I going completely in the wrong direction?

Link to comment
Share on other sites

or am I going completely in the wrong direction?

 

Wrong direction.  Implement your own packets and packet handler.

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

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.