Jump to content

[1.7.10] [Solved] Structures won't generate in custom dimension...


Recommended Posts

Posted

I finally figured out how to successfully make a dimension but my structures won't generate in it.

I've looked at every tutorial I could find but I can't figure out what I'm doing wrong.

 

 

Trying from the chunk provider:

 

ChunkProviderOtherWorld

 

  Reveal hidden contents

 

WorldGenOWBloodTreeSmall

 

  Reveal hidden contents

 

 

 

 

 

And trying from the biome:

 

BiomeDecoratorHelper

 

  Reveal hidden contents

 

 

StructureBloodTreeSmall

 

  Reveal hidden contents

 

 

 

Posted

I have a structure I made that only spawns in plains biome. If your dimension only uses your custom biomes, you can make it so your structure doesn't spawn in any other dimension as long as your custom biomes don't spawn in other dimensions. Put this around all of your world.setBlock parts: BiomeGenBase biomegenbase = world.getWorldChunkManager().getBiomeGenAt(x + 16, z + 16); if (biomegenbase == BiomeGenBase.plains ) { }

Obviously change BiomeGenBase to your biomegen file, and biomegenbase.plains to yourbiomegenfile.yourbiome. If you want an example heres my structure: http://pastebin.com/9h4ek94g Hope this helps! By the way, if you have checked and are sure that your structure generates properly, can you help me out? I recently posted a thread about my structure not generating right (Don't worry it does generate in only the biome I set, just too much). Heres my post: http://www.minecraftforge.net/forum/index.php/topic,29623.0.html

 

Again, hope this works for you!

Posted

But I already have this around it:

 

 

if(world.getBiomeGenForCoords(chunkX, chunkZ).biomeName.equals(FCBiomes.badlands))

{

      setBlock.....

}

 

Is that not basically the same thing?

Posted
  On 4/18/2015 at 12:36 AM, Ms_Raven said:

But I already have this around it:

 

 

if(world.getBiomeGenForCoords(chunkX, chunkZ).biomeName.equals(FCBiomes.badlands))

{

      setBlock.....

}

 

Is that not basically the same thing?

 

Im new to modding and yes, to me it does seem like the same thing, but I am sure that my method works. Give it a try.

Posted

What.. Why are you checking equals with biomeName and Biome itself? It cannot be same.

As they are singletons to the biome, checking biomegenbase == BiomeGenBase.plains would be just okay.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Posted

I changed the populate() method in the chunk provider to this

 

 

for(int place = 0; place < 10; place++)

{

int x1 = chunkX + rand.nextInt(16)+8;

int z1 = chunkZ + rand.nextInt(16)+8;

int y1 = worldObj.getHeightValue(x1, z1);//rand.nextInt(240);

 

(new StructureBloodTreeSmall()).generateSurface(this.worldObj, rand, x1, y1, z1);

}

 

And the structure class to this

 

 

public void generateSurface(World world, Random random, int chunkX, int chunkY, int chunkZ)

{

if(world.getBlock(chunkX,chunkY,chunkZ) == HorrorReg.bloodGrass)

{

if((random.nextInt(100)+1)<=10)

{

boolean place = true;

 

for (int y = 0; y<6; y++)

for (int z = 0; z<5; z++)

for (int x = 0; x<5; x++)

if(world.getBlock(chunkX+x,chunkY+y+1,chunkZ+z)!=Blocks.air)

place = false;

if(place){

                                                    ...setBlock() stuff....

}

}

 

}

}

 

 

and still it doesn't generate the trees.

 

I noticed that my ore from the BiomeDecoratorHelper does generate though, so is there a way for me to add my structure generation to that method even though it doesn't have World, Random, etc?

Posted

         int x1 = chunkX + rand.nextInt(16)+8;
         int z1 = chunkZ + rand.nextInt(16)+8;

 

Bad code monkey, no cookie.  You just told it you don't want to generate in this chunk but rather that chunk over there.  A chunk is only 16 blocks wide, why the hell are you adding 8?

 

That said, here's your problem:

 

place = false;
if(place){
    //setBlock()
}

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.

Posted

That's in the if statement above, where it's making sure the above block is air and setting it to false if it's not.

 

Apparently I just had to check the block UNDER what's returned in getHeightValue and got it to work.

Posted
  On 4/21/2015 at 2:15 PM, Draco18s said:

That said, here's your problem:

 

place = false;
if(place){
    //setBlock()
}

  Quote

That's in the if statement above, where it's making sure the above block is air and setting it to false if it's not.

...and then never set it back to true for the next loop iteration.

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.

Posted
  On 4/27/2015 at 3:53 PM, Ms_Raven said:

I removed that, so the problem can't be in the structure code. And like I said, one single tree did appear.

 

The single tree could have been due to luck picking an initial block that matched your conditions.

 

Without updated code, I don't know what it is that you've changed or how.  You can tell me you removed that, but as I can't see it, I don't know what else has changed or what effect it has had.

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.

Posted
public class WorldGenOWBloodTreeSmall extends WorldGenerator implements IWorldGenerator
{

public WorldGenOWBloodTreeSmall()
{
}
public boolean generate(World world, Random rand, int x, int y, int z)
{
	int chunkX = x + rand.nextInt(15);
	int chunkZ = z + rand.nextInt(15);
	int chunkY = world.getHeightValue(chunkX, chunkZ) - 1;
	if(world.getBlock(chunkX,chunkY,chunkZ) == HorrorReg.bloodGrass)
	{

		...setBlock code...


			}
	return true;
}
@Override
public void generate(Random random, int chunkX, int chunkZ, World world,
		IChunkProvider chunkGenerator, IChunkProvider chunkProvider)
{
	for(int i = 0; i < 10; i++)
	{
		int xCoord = chunkX + random.nextInt(16);
		int yCoord = random.nextInt(240);
		int zCoord = chunkZ + random.nextInt(16);

		(new WorldGenOWBloodTreeSmall()).generate(world, random, xCoord, yCoord, zCoord);
	}
}
}

Posted

Ok, two two four six things:

 

1) You're still adding a random value to your chunk coordinates twice.

2) Your chunk coordinates are never multiplied by 16 (meaning that you're generating around the world origin a lot)

3) One of your randoms is rand(15) for no explicable reason.

4) You generate a random Y value, which is then never used.

5) You have two functions with the same name, but which take different parameters

6)

(new WorldGenOWBloodTreeSmall())

  WHY ARE YOU MAKING A NEW INSTANCE!  YOU HAVE ONE ALREADY, YOU'RE IN IT.

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.

Posted

Where am I multiplying the coordinates?

Isn't rand(15) needed to make it generate randomly around a chunnk?

It's insisting that I implement both methods when I remove either of them.

 

Fixed the other things.

public class WorldGenOWBloodTreeSmall extends WorldGenerator implements IWorldGenerator
{

public boolean generate(World world, Random rand, int x, int y, int z)
{
	int chunkX = x + rand.nextInt(15);
	int chunkZ = z + rand.nextInt(15);
	int chunkY = world.getHeightValue(chunkX, chunkZ)+1;
	if(world.getBlock(chunkX,chunkY-1,chunkZ) == HorrorReg.bloodGrass)
	{
	world.setBlock(chunkX+2, chunkY, chunkZ+2, Main.bloodstone, 0, 2);
	world.setBlock(chunkX+2, chunkY+1, chunkZ+2, Main.bloodstone, 0, 2);
	world.setBlock(chunkX+1, chunkY+2, chunkZ, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+2, chunkZ, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+2, chunkZ, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX, chunkY+2, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+2, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+2, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+2, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+4, chunkY+2, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX, chunkY+2, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+2, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+2, chunkZ+2, Main.bloodstone, 0, 2);
	world.setBlock(chunkX+3, chunkY+2, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+4, chunkY+2, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX, chunkY+2, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+2, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+2, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+2, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+4, chunkY+2, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+2, chunkZ+4, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+2, chunkZ+4, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+2, chunkZ+4, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+3, chunkZ, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+3, chunkZ, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+3, chunkZ, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX, chunkY+3, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+3, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+3, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+3, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+4, chunkY+3, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX, chunkY+3, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+3, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+3, chunkZ+2, Main.bloodstone, 0, 2);
	world.setBlock(chunkX+3, chunkY+3, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+4, chunkY+3, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX, chunkY+3, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+3, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+3, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+3, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+4, chunkY+3, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+3, chunkZ+4, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+3, chunkZ+4, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+3, chunkZ+4, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+4, chunkZ, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+4, chunkZ, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+4, chunkZ, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX, chunkY+4, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+4, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+4, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+4, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+4, chunkY+4, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX, chunkY+4, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+4, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+4, chunkZ+2, Main.bloodstone, 0, 2);
	world.setBlock(chunkX+3, chunkY+4, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+4, chunkY+4, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX, chunkY+4, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+4, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+4, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+4, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+4, chunkY+4, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+4, chunkZ+4, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+4, chunkZ+4, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+4, chunkZ+4, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+5, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+5, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+5, chunkZ+1, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+5, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+5, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+5, chunkZ+2, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+1, chunkY+5, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+2, chunkY+5, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
	world.setBlock(chunkX+3, chunkY+5, chunkZ+3, HorrorReg.bloodGrass, 0, 2);
			}
	return true;
}
@Override
public void generate(Random random, int chunkX, int chunkZ, World world,
		IChunkProvider chunkGenerator, IChunkProvider chunkProvider)
{
	int chunkY = world.getHeightValue(chunkX, chunkZ)+1;
	for(int i = 0; i < 10; i++)
	{
		generate(world, random, chunkX, chunkY, chunkZ);
	}
}
}

Posted

regionX != chunkX != blockX

 

rand(16) (NOT 15!  15 returns a value 0-14, which is one block shy of a full chunk, and doing it twice isn't any good because that generates a value 0-30, which is larger than a chunk) generates somewhere within a chunk, provided you convert the chunkX/Z into blockX/Z by multiplying by 16.

 

You're still passing a Y value you're not using:

int chunkY = world.getHeightValue(chunkX, chunkZ)+1;
generate(world, random, chunkX, chunkY, chunkZ);
->
public boolean generate(World world, Random rand, int x, int y, int z)
{
	int chunkX = x + rand.nextInt(15);
	int chunkZ = z + rand.nextInt(15);
	int chunkY = world.getHeightValue(chunkX, chunkZ)+1;
	//int y is never used and is equal to chunkY, except you made the call to getHeightValue twice.
}

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.

Posted

I changed it to this and added console print-outs.

The generate() method is called, but I guess the if statement always returns false? Am I getting the world height wrong?

 

public class WorldGenOWBloodTreeSmall extends WorldGenerator implements IWorldGenerator
{

public boolean generate(World world, Random rand, int x, int y, int z)
{
	Tools.println("Checking for tree placement.");
	if(world.getBlock(x,y-1,z) == HorrorReg.bloodGrass)
	{
		Tools.println("Creating tree.");
		world.setBlock(x+2, y, z+2, Main.bloodstone, 0, 2);
		world.setBlock(x+2, y+1, z+2, Main.bloodstone, 0, 2);
		world.setBlock(x+1, y+2, z, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+2, z, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+2, z, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x, y+2, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+2, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+2, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+2, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+4, y+2, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x, y+2, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+2, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+2, z+2, Main.bloodstone, 0, 2);
		world.setBlock(x+3, y+2, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+4, y+2, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x, y+2, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+2, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+2, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+2, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+4, y+2, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+2, z+4, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+2, z+4, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+2, z+4, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+3, z, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+3, z, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+3, z, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x, y+3, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+3, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+3, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+3, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+4, y+3, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x, y+3, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+3, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+3, z+2, Main.bloodstone, 0, 2);
		world.setBlock(x+3, y+3, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+4, y+3, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x, y+3, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+3, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+3, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+3, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+4, y+3, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+3, z+4, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+3, z+4, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+3, z+4, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+4, z, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+4, z, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+4, z, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x, y+4, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+4, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+4, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+4, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+4, y+4, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x, y+4, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+4, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+4, z+2, Main.bloodstone, 0, 2);
		world.setBlock(x+3, y+4, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+4, y+4, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x, y+4, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+4, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+4, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+4, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+4, y+4, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+4, z+4, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+4, z+4, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+4, z+4, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+5, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+5, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+5, z+1, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+5, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+5, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+5, z+2, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+1, y+5, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+2, y+5, z+3, HorrorReg.bloodGrass, 0, 2);
		world.setBlock(x+3, y+5, z+3, HorrorReg.bloodGrass, 0, 2);
	}
	return true;
}
@Override
public void generate(Random random, int x, int z, World world,
		IChunkProvider chunkGenerator, IChunkProvider chunkProvider)
{
	int chunkX = x + random.nextInt(16);
	int chunkZ = z + random.nextInt(16);
	int chunkY = world.getHeightValue(chunkX, chunkZ);
	for(int i = 0; i < 10; i++)
	{
		generate(world, random, chunkX, chunkY, chunkZ);
	}
}
}

Posted

Still not converting from chunkCoords to blockCoords.

Didn't print any useful information to the console, like the current coordinates checked or the block found...

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.

Posted

Well I changed the block checks to this:

 

Tools.println("Checking for tree placement at " + x + ", " + y + ", " + z + ".");
	Tools.println("Block found is '" + world.getBlock(x, y, z).getUnlocalizedName() + ".'");
	Tools.println("Block above is '" + world.getBlock(x, y + 1, z).getUnlocalizedName() + ".'");
	Tools.println("Block below is '" + world.getBlock(x, y - 1, z).getUnlocalizedName() + ".'");

 

 

I don't think I changed anything else but this is not even remotely how trees should generate...

 

 

MKHwApj.png

Posted
  On 4/27/2015 at 6:05 PM, Draco18s said:

Still not converting from chunkCoords to blockCoords.

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.

Posted

Fuck.  Ing.  Hell.

 

I've said this like four times.

 

  On 4/27/2015 at 5:05 PM, Draco18s said:

regionX != chunkX != blockX

 

convert the chunkX/Z into blockX/Z by multiplying by 16

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.

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

    • But your Launcher does not find it   Java path is: /run/user/1000/doc/3f910b8/java Checking Java version... Java checker returned some invalid data we don't understand: Check the Azul Zulu site and select your OS and download the latest Java 8 build for Linux https://www.azul.com/downloads/?version=java-8-lts&package=jre#zulu After installation, check the path and put this path into your Launcher Java settings (Java Executable)
    • Try other builds of pehkui and origins++ until you find a working combination
    • Some Create addons are only compatible with Create 6 or Create 5 - so not both versions at the same time Try older builds of Create Stuff and Additions This is the last build before the Create 6 update: https://www.curseforge.com/minecraft/mc-mods/create-stuff-additions/files/6168370
    • ✅ Crobo Coupon Code: 51k3b0je — Get Your \$25 Amazon Gift Card Bonus! If you’re new to Crobo and want to make the most out of your first transaction, you’ve come to the right place. The **Crobo coupon code: 51k3b0je** is a fantastic way to get started. By using this code, you can unlock an exclusive **\$25 Amazon gift card** after completing your first eligible transfer. Let’s dive deep into how the **Crobo coupon code: 51k3b0je** works, why you should use it, and how to claim your reward. --- 🌟 What is Crobo? Crobo is a trusted, modern platform designed for **international money transfers**. It offers fast, secure, and low-cost transactions, making it a favorite choice for individuals and businesses alike. Crobo is committed to transparency, low fees, and competitive exchange rates. And with promo deals like the **Crobo coupon code: 51k3b0je**, it becomes even more attractive. Crobo focuses on providing customers with: * Quick transfer speeds * Minimal fees * Safe, encrypted transactions * Great referral and promo code rewards When you choose Crobo, you’re choosing a platform that values your time, money, and loyalty. And now with the **Crobo coupon code: 51k3b0je**, you can start your Crobo journey with a **bonus reward**! ---# 💥 What is the Crobo Coupon Code: 51k3b0je? The **Crobo coupon code: 51k3b0je** is a **special promotional code** designed for new users. By entering this code during signup, you’ll be eligible for: ✅ A **\$25 Amazon gift card** after your first qualifying transfer. ✅ Access to Crobo’s referral system to earn more rewards. ✅ The ability to combine with future seasonal Crobo discounts. Unlike generic promo codes that just offer small fee reductions, the **Crobo coupon code: 51k3b0je** directly gives you a tangible, valuable reward — perfect for online shopping or gifting. --- ### 🎯 Why Use Crobo Coupon Code: 51k3b0je? There are many reasons why users choose to apply the **Crobo coupon code: 51k3b0je**: 🌟 **Free bonus reward** — Your first transfer can instantly earn you a \$25 Amazon gift card. 🌟 **Trusted platform** — Crobo is known for secure, fast, and affordable transfers. 🌟 **Easy to apply** — Simply enter **Crobo coupon code: 51k3b0je** at signup — no complicated steps. 🌟 **Referral opportunities** — Once you’ve used **Crobo coupon code: 51k3b0je**, you can invite friends and earn more rewards. 🌟 **Stackable savings** — Pair **Crobo coupon code: 51k3b0je** with Crobo’s ongoing offers or holiday deals for even more benefits. --- ### 📝 How to Use Crobo Coupon Code: 51k3b0je Getting started with **Crobo coupon code: 51k3b0je** is quick and easy. Just follow these steps: 1️⃣ **Download the Crobo app** (available on Google Play Store and Apple App Store) or visit the official Crobo website. 2️⃣ **Start the sign-up process** by entering your basic details (name, email, phone number, etc.). 3️⃣ When prompted, enter **Crobo coupon code: 51k3b0je** in the promo code or coupon code field. 4️⃣ Complete your first transaction — be sure to meet the minimum amount required to qualify for the reward (usually specified in Crobo’s promo terms). 5️⃣ After the transaction is verified, receive your **\$25 Amazon gift card** directly via email or within your Crobo account. --- ### 💡 Tips to Maximize Your Crobo Coupon Code: 51k3b0je Bonus 👉 **Transfer the minimum qualifying amount or more** — this ensures you meet the conditions for the gift card. 👉 **Refer friends after your signup** — Crobo allows users who’ve signed up with codes like **Crobo coupon code: 51k3b0je** to share their own code for extra bonuses. 👉 **Check for additional Crobo promotions** — sometimes Crobo offers seasonal or regional deals that stack with the coupon code. 👉 **Complete your transaction soon after signup** — many bonuses have time limits, so act quickly! --- ### 🚀 Frequently Asked Questions about Crobo Coupon Code: 51k3b0je **Q: Can I use Crobo coupon code: 51k3b0je if I already have a Crobo account?** A: No — the **Crobo coupon code: 51k3b0je** is intended for **new users only**. It must be applied during the initial registration process. --- **Q: How long does it take to get the \$25 Amazon gift card after using Crobo coupon code: 51k3b0je?** A: Typically, the gift card is sent **within a few business days** after your first qualifying transfer is completed and verified. --- **Q: Are there hidden fees when using Crobo coupon code: 51k3b0je?** A: No — Crobo is transparent about its fees. The **Crobo coupon code: 51k3b0je** simply adds a bonus reward without increasing your costs. --- **Q: Can I combine Crobo coupon code: 51k3b0je with other promo codes?** A: The **Crobo coupon code: 51k3b0je** is generally applied as a standalone signup bonus. However, Crobo often offers **ongoing promotions** that may apply to future transactions. ---  📌 Reference Crobo promo code: {51k3b0je} Crobo discount code: {51k3b0je} --- # 🌍 Final Thoughts If you want to enjoy safe, fast, and affordable money transfers with an added bonus, **Crobo coupon code: 51k3b0je** is your best option. Not only will you experience excellent service, but you’ll also earn a **\$25 Amazon gift card** — a reward that you can use immediately for shopping or gifts. 👉 **Don’t wait — sign up today using Crobo coupon code: 51k3b0je and claim your bonus!**
    • Does this schematic contain stuff from the mod prettypipes? Looks like Forgematica has issues to load it Try to load the schematic with worldedit - remove the pipes, save it and test it again
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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