Posted August 6, 201312 yr I am trying to make a new world generator. The world will be mostly empty (think skygrid), but I am at a loss as to how I do that. I have followed this guide: http://www.minecraftforge.net/wiki/Adding_World_Generation But that is only for adding blocks to the world as it is. I would like to have my generator show up on the list in the main menu. One way of getting an empty world is to just have a superflat generator and then feed it one of the commands that will make it generate a world with nothing in it. But even that, I cannot see where happens. I have been looking through the code in net.minecraft.client.gui.GuiCreateWorld, but I cant see how any of those buttons trigger their associated actions. But maybe that is not the right place to be looking? I want most other things to still work as normal (mob spawning, water/lava flow and such) and also be able to generate any block that is put into forge via installed mods so that it will work with other forge mods. Any pointers you could give would be great.
August 6, 201312 yr I don't know if this will help, but it's just a suggestion. You could make a biome and add this code to the constructor: this.topBlock = (byte) 0; this.fillerBlock = (byte) 0; Then you could make a new dimension that uses this biome. If you need the tutorials here's a link: http://www.minecraftforum.net/topic/1797143- Before you even think about modding, please learn basic Java.
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.