Help with Minecraft

Hello!

I know I have been making a lot of topics about ideas for games but I have some of my own.

I basically need people to make mini guides in here for different mechanics i could use in Minecraft/ how to make them.

Some include:

  • Map Generation
  • How to get different resources
  • Treasure
  • Etc.

I really need a lot of help with this and I will be making a guide.

Thanks so much.

Minecraft is hard to make. Have you started the map yet?

no but I know how ill make it. i do need help with biomes though

Consider it done. I’ll make the biomes.

Thanks!

I’ve already started, expect it later. If there’s a biome index, that will be useful.

Biome generation with terrain is impossible, but you can use props instead.

Here’s how to make a “Minecraft” map

You can do that using props.

Use breakable items and crafting to make a resource collecting system.

I supposed you could hide it somewhere within the underground, have it give items when opened.

1 Like

I mean, it’s kinda bad, but its a forest.

1 Like

Definitely a forest. I’ll modify it. What ID do you think?

What u mean?

Like is there a number id i should make it? for ingame stats

Let me try to explain generic random generation like a seed in Minecraft.

Let’s say the number below represents the random seed given at the start of the game.

52 154 326 37

In the code, there would be no spaces. For easier reading, I put spaces in there. Anyway, let’s say the first two numbers, 52, randomize the spawn point of the player. The first digit represents the X-axis, and the second digit represents the Y-axis. So the starting location is (5, 2).

The next six digits, 154 326, represent the order of biomes spawn. The order created might be center, top, top right, right, down, left. If that is the case, then the center biome is one, the top biome is 5, the top right biome is 4, and so on.

The final numbers, 37, may represent the starting inventory.

This is a very powerful system that Minecraft uses, I hope you can implement something similar to this!

It nice to be helping again haha.

Oh- and you should check minecraft if you haven’t already. :upside_down_face:

2 Likes