Hello all,
I am a noob modder. I've taken college classes in Java and C++, but it wasn't my major. (Went to school for art instead of CompSci.) I've googled tutorials, and so far done okay. I've got blocks, items, recipes and enchantments down. Yeah, those are easy.
My next goal was world-generation. I've done some reading and I've done some hacking. Here is what I want I want to do:
I want to generate a world that is all desert and wasteland. From what I know now, you cannot remove 'vanilla' biomes from world generation. So I have a few thoughts:
A) write my own world generation that would take existing biomes and rewrite them. That would create a lot of work for the computer, create a chunk, then re-write the chuck replacing blocks already generated by vanilla.
B) re-write all the world generation code to do what I want. Currently this is beyond my scope, but if that is the best way, I would still need advice in how to proceed.
C) use an existing Mod and distribute my mod with a Mod pack that requires the existing mod. For example, make my Mod require Biomes O' Plenty, and reference BoP code when generating a world tailored to my mod.
My currant inclination is to create a new dimension that is only desert and wasteland biomes and teleport new players into the the new dimension when they log in.
Any thoughts would be appreciated.
Direwolf