Solved Create World with only one Biome

Discussion in 'Plugin Development' started by Floppy012, Aug 5, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    Floppy012

    I want to create a World that contains only one single biome. I've spent the last 6 hours searching for answers. There were some threads but some were not answered the others ended with "use Terrain control".

    I don't want to use TerrainControl.

    I want, that this world regenerates with a new seed at a specific time. Neither the Regeneration nor the new Seed is a problem. My problem is, to remove all biomes that I don't want to have in this world.

    Can someone help me?

    Floppy
     
  2. Offline

    Skionz

    Do you mean like when you generate the world you want to actually change the blocks to lets say look like a desert? Or do you want to just set the biome like this?
    Code:
    world.getBlockAt(loc).setBiome(Biome.HELL);
    
     
  3. Offline

    Dragonphase

    You'll need to create your own ChunkGenerator. There are some tutorials that cover this in the Resources subforum. You can't however generate a default Minecraft world with selective biomes.
     
  4. Offline

    Floppy012

    Thanks for your Replies.

    There are many tutorials. But none of them tell me how to change the Biome.
     
  5. Offline

    _LB

    If you're willing to wait for 1.8, the new Customized map type will allow you to do this without mods or plugins.
     
  6. Offline

    Floppy012

    _LB Oh. Thankyou. I guess I should have looked onto the Patchnotes.

    @Others Thankyou for your help :)
     
Thread Status:
Not open for further replies.

Share This Page