Jump to content

Recommended Posts

Posted
  On 10/22/2013 at 7:12 PM, Jeerdus said:

I just realized I commented out "WorldGenLithium worldGen = new WorldGenLithium();"

 

That would do 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

You would have to loop through the 16 variations on x and z.  Best bet is to pick a spot inside the chunk (add that value to those two lines) and when you find clay, then loop across x and z.

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 played with the code a bit and eventually I got to this:

	public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) {
        int blockID;
        int corX;
        int corZ;
            for(int corY=0;corY < 64 && corY > 48; corY++) {
            	for (int corX2=0;corX2 <= 16; corX2++){
            		for (int corZ2=0;corZ2 <= 16; corZ2++){
            				corX = chunkX*16 + corX2;
            				corZ = chunkZ*16 + corZ2;
                			blockID = world.getBlockId(corX, corY, corZ);
                			if(blockID == Block.blockClay.blockID) {
                			world.setBlock(corX, corY, corZ, Elementum.lithiumClay.blockID);
                			}
            			}
            		}
   		}
    }

 

But that bloody thing still won't generate >:(

Posted

for(int corY=0;corY < 64 && corY > 48; corY++) {  //you have a problem here.

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

What happens on the first loop?

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

You're being too vague.  Run through that loop, use a piece of paper to track variables if you have to, what is it actually doing?

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

Hmm... strange...

I deleted the

&& corY > 48

bit from the

for(int corY=0;corY < 64 && corY > 48; corY++)

and it seems that it worked.

Anyway, thanks for the help :)

Posted

It's not strange at all.

 

Not.

 

At.

 

All.

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

Try as Draco said to write down what happens on paper and it will be quite easy to see what happened and why :)

 

It's important that you understand it, as for loops and such logic is fundamental to programming :)

  Quote

If you guys dont get it.. then well ya.. try harder...

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.