Minecraft is a game that many people enjoy playing. It’s a sandbox game where you can create your own maps and worlds. There are many different ways to play Minecraft, so it’s great for all sorts of people. One way to play Minecraft is to create custom maps. Custom maps are different from the default Minecraft maps. They can be more creative and interesting. You can also make custom maps with different features, like different levels, mobs, and items. To make a custom map, you first need to create a map file. This file contains the information about your map. It includes the name of your map, the level name, the coordinates of your world location, and other important information. Next, you need to add the code for your map. This code will help you create your map and start playing it! The code is very simple: it just needs to return an object that represents your map! The first time you run Minecraft, it will automatically generate a new map file called “minecraft-1_6_2-custom-map”. This file contains everything you need to start playing your newmap! You can play it by opening up the “minecraft-1_6_2-custom-map” file in an editor like Notepad or WordPad and editing its contents.


Early on in the series we created our first Creative Mode and Survival Mode maps, but then we dove headlong into learning about biomes, creatures, and many other facets of the Minecraft experience. Today we’re returning to the map. Let’s learn how to seed and generate awesome custom maps.

In our earlier lessons we simply had you create a world by allowing Minecraft to randomly generate one for you. While there’s nothing wrong with this approach, you can easily take control of the creation process and direct it so that the world contains the features you desire.

While the individual blocks might be the most fundamental component of the Minecraft experience the way those blocks come together into the greater world map is what shapes your play experience. In Creative Mode players are inspired by the landscape: the sweeping mountains of the Extreme Hills biome become the foundation of a magnificent castle, forests give rise to logging camps, careful terraforming of a Desert Village creates an oasis right out of an Arabian tale. In Survival Mode those same biomes present challenges and rewards all their own.

Rolling the dice with the world generator is fun but you’re not stuck with dice-roll worlds. Using just the tools built into Minecraft you can exert a fair amount of control over what kind of world the in-game generation engine will create. Let’s look at how we can use seeds and presets to create the world we desire.

The first way you can direct the world creation process is by the use of map “seeds.” Whether you use the in-game tool to specify what you want your seed to be or let the game pick a seed for you, every map has a seed code.

Minecraft worlds are generated using pseudo-random seeds and you could, if you had the time and desire, create worlds all the live long day without running into the same world twice.

In fact, as an interesting aside, even without sharing a seed two people could have the same world is by some chance they happened to have perfectly synchronized computer system clocks and they went to create a new world at exactly the same millisecond in time.

Minecraft uses the time provided by your computer’s system clock to seed the world if you don’t provide a seed of your own. This is why you can create world after world after world without running into a duplicate one (because the time stamp for the creation of each world is different). Although the pool of worlds seems nearly infinite, technically speaking the limitations of the seed length and the generation algorithm limit the total possible worlds to 2^64 power (or 18,446,744,073,709,551,616). Not truly infinite but so big we’ll never have to worry about running out of fresh worlds.

Despite the sheer number of possible worlds it doesn’t mean that two people can’t have the exact same world, however. They can, if they share the seed code that was used to generate the world. You can check the seed of any world by pressing the “/” key to pull up the console menu and typing in “/seed” to get a readout like the one below:

Any other player who creates a world with the corresponding version of Minecraft and uses that seed will have the exact same world we’re standing in: caves, villages, dirt and all.

Let’s take a moment to emphasize that “corresponding version” bit. Major releases of Minecraft typically include changes to the world generation engine and while all seeds will always work (in that they will generate a world) they won’t generate the same world unless the versions use the same world generation algorithm. You can share seeds between Minecraft 1.6.2 and 1.6.4, for example, and typically get identical or nearly identical results, but a seed that produced a cool mega village in 1.6.2 likely won’t produce anything like that if you reuse it for 1.7.9.

Using the seed system allows you to share a seed with your friend so that they can enjoy it and in turn they can share seeds with you. Further, it allows you to easily search on the Internet for seeds that interest you.

Simply searching for your Minecraft version number, the term “seed,” and the features you want, typically yields a pile of seeds. Searching for “Minecraft 1.7 exposed Stronghold” for example (because we wanted a map with a Stronghold near the surface and ready to explore), yielded multiple results all indicating that using the simple seed “4” on Minecraft version 1.7.x would provide all the Stronghold goodness we crave.

So how do we apply a seed?

Open up the Minecraft world creation screen, just as we did in the first lesson, by clicking “Single Player” and then “Create New World.” Name your world and then click on “More World Options.”

In the “Seed for the World Generator” box, you place your seed. Although the automatically generated seeds are long integer strings, they don’t have to be long numeric strings. You could type in “I love diamonds” or “Notch is a creative genius” and the world creator would just convert the alpha strings to an integer. This conversion is why even if you type “I love diamonds” when you later use the “/seed” command to give the seed to a friend, gives an integer instead of an alphanumeric phrase.

In this case we’re going to go for an incredibly simple string and just put in “4.” That surface-exposed Stronghold we were promised? Just a few blocks from our spawn point is a big hole:

That’s the beauty of the seed system right there. One person can discover a cool seed and can then turn around and do a “seed spotlight” video on YouTube, post pictures of the seed on the Minecraft forum, or otherwise share it far and wide.

When searching for seeds with specific features, the general search terms we highlighted above – Minecraft version + seed + features you want – works very well.

If you’re more in the mood for simply browsing what’s out there, we recommend The Official Minecraft Forum’s Seed Sub-forum.

While seeds are like the DNA of a map, presets are like genetic expression: a gentle nudge in a given direction.

Presets allow you to specify things like what the layers of the world are composed of, if there will be structures or not, (as well as their frequency, and other factors. You can access the preset menu system by pulling up the world creation menu and, like with the seed menu, clicking on “More World Options.”

Within the world options menu click on “World Type” to switch from “Default” to “Superflat.” You’ll see the default preset:

This is the most basic of the “Superflat” words. You get a layer of grass, two layers of dirt, and then you hit bedrock. It pretty much exists to provide a flat surface for Creative Mode builders to work on (it would be a horrible survival map to suffer through). Let’s click the “Presets” button and see what we can do to mix things up a bit.

In the preset menu, you’ll see the preset code string for the Classic Flat configuration we saw laid out on the last screen. The preset code can be simple as seen here, with just a dozen characters or so, or it can be extremely complex with hundreds of characters covering multiple variables.

Let’s say, for example, you wanted a giant desert world; a nice big pile of stone for you to mine with so many villages it was like one continuous city. Using the following preset code:

2;1×7,60×1,6×12;2;village(size=30 distance=9),biome_1(distance=32),decoration

You could have the setup you desire. The first number specifies the version code (so you can share preset codes across changes in the generator code), the next numbers specify the layers of world (1 bedrock, 60 stone, and 6 sand), and then the remaining variables specify how big and far apart the villages will be, what the biome is (and how far apart its features are), and that we want the decorations turned on, e.g. there will be cacti in the desert.

What does that code look like in action when pasted into the preset box? Take a look at this stretches-forever desert village:

Presets are probably one of the most underutilized features in Minecraft as most players look at the menu, try out the basic Superflat plains world, and then shrug and go “Ehh, lame,” before promptly forgetting all about it.

There’s a ton of potential hidden in the variable system however, and we’d strongly encourage you to check out the Minecraft wiki entry on the preset variables and to experiment with this handy visual preset generator, courtesy of Minecraft101.

Using that generator is radically easier than parsing out the codes by hand and gives you the opportunity to mess around with really fun combinations like superflat worlds that have cake in the middle (you’ll never go hungry again), worlds that are 200 layers of stone instead of the typical 65 or so (you’ll be mining forever), and if you really want to mess with the game mechanics. You can even do stuff like create a super flat world with just a layer of bedrock and grass but turn on structures like Abandoned Mineshafts!

Before we leave the world creation screen, there are two other options worth examining. When you click on the “World Type” button in the world creation screen, your options are Default, Superflat, Large Biome, and Amplified.

The two latter types, Large Biome and Amplified offer us some pretty cool variations on the standard map. Large Biome maps are maps that follow the same biome pattern as their default counterparts except that the biomes themselves are 16 times bigger. If you find it puzzling that a thin strip of snowy hills can exist between two swathes of desert, this is the biome for you. That thin strip of snow will become an expanse and the transition between biomes will seem significantly less dramatic.

Here is a world created using the Default algorithm on Minecraft 1.7.9 and the seed 785087661.

Here is the same seed, again in Minecraft 1.7.9, but with the Large Biomes algorithm enabled.

You’ll notice two things about the Large Biome map. First, it’s like zooming in on the original map with a 16x magnifying glass – what took up a small portion of the map (the grasslands and deserts) now takes up the entire viewable area in our map reader.

Second, you’ll also notice the explosion of Villages and Desert Temples. Because the biomes are 16 times bigger, there is 16 times the space for the game to apply the structure generation algorithms to applicable biomes. Huge biomes mean lots of room for structures.

In addition to the expansive biomes offered by the Large Biome algorithm there’s another larger-than-life algorithm you can take advantage of: the Amplified map.

Amplified maps were actually created by accident. Jeb, one of Minecraft’s lead developers, was messing around with generating worlds where the terrain was so extreme in elevation that it broken through the clouds and pushed into the sky. The resulting generation algorithm was rather extreme, a bit glitchy, and yielded odd results like huge hunks of rock floating in the sky like islands and villages spawned in odd locations. The results were so novel, however, that Notch insisted the algorithm be included in the game.

This screenshot is a perfect example of the crazy terrain and village generation that unfolds when an Amplified map is generated:

You can see extreme elevation changes on both sides of the map; extremely tall rock formations, floating islands of stone and dirt (some even have trees and grass), and the most curious thing of all: the village. In a normal map you’d never find a village spawned falling off the edge of an Extreme Hills biome like that, but such odd village placement is common in Amplified maps.

Even when you’re not running across oddly shaped villages, you’ll never out of soaring terrain to explore. The screenshot above is from the same Amplified map, taken from above an Ocean biome in order to give a clear view of how extreme even the shorelines are on an Amplified map. Whether you’re looking to build a wizard tower above the clouds or set up a cliff diving deck it’s an extreme adventure paradise!

Creating worlds of your own using the generation tool or looking up awesome seeds other players have shared is a great way to expand your map palette, and exert a little control over what your maps look like.

There’s one major thing that the tools we reviewed today won’t do. No seed or generator tweak is going to build custom terrain or structures that don’t already exist in the Minecraft generation algorithms. No amount of seed hunting or Superflat generator tweaking will ever yield anything that looks like say, an Ewok village from the Star Wars universe because there’s simply nothing in the game code that would ever spawn villagers homes up in the trees of a Roofed Forest biome.

Other players, however, go nuts building cool worlds like that filled with awesome structures. Tomorrow we’re going to look at how to download and install custom maps created by other players so that not only do we get a cool map (like we do with seeds) but we get all the cool stuff the player has built in that world too.

For homework, play around with the world generators, especially with the Superflat generator and the website we linked to. We’d recommend you save the Amplified maps for last, it’s almost impossible to resist exploring them.