Custom map as Dimension

Started by Noxvern on

Topic category: Help with modding (Java Edition)

Last seen on 00:25, 3. Sep 2022
Joined Jun 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Custom map as Dimension

Hello everyone,

Im creating  a mod (1.15.2) that has diferents dimensions on it, but I want to make the dimensions myself and make the player spawn in a village, but the player will not be able to leave that area and explore (so no world gen) Or If is not possible, just make one dimension but without biomes? How  I can do this? I mean if someone dowloads the mod and goes to the dimension will not be teleported randomly?

Thnx

Last seen on 03:10, 19. Feb 2022
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
This isn't possible without…
Sun, 06/07/2020 - 10:14

This isn't possible without coding :(

Last seen on 00:25, 3. Sep 2022
Joined Jun 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You mean I can't do it in…
Sun, 06/07/2020 - 11:24

You mean I can't do it in MCreator? That's sad :c 

Last seen on 21:10, 11. Jul 2020
Joined Jun 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I too am trying to make a…
Tue, 06/09/2020 - 14:40

I too am trying to make a mod on Code Lyoko but we can't put our own maps in one dimension ...

Last seen on 00:25, 3. Sep 2022
Joined Jun 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Im creating a Code Lyoko mod…
Thu, 06/11/2020 - 04:34

Im creating a Code Lyoko mod too, its almost finished but well, making the sectors as dimensions its imposible, the way that dimensions works (random world gen) makes the sectos look ugly and the towers spawn randonly, so I decided to not use dimension and instaead making just content and the scanners are just decorative blocks

Last seen on 05:52, 18. Oct 2021
Joined Feb 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
build the map and save it as…
Thu, 06/11/2020 - 06:45

build the map and save it as a structure, then do when dimension loads place a structure at 0, 0, 0 then teleport the player to 0, 0, 0

 

Last seen on 03:10, 19. Feb 2022
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
structures can't be bigger…
Thu, 06/11/2020 - 06:46

structures can't be bigger than 32*32*32.

Last seen on 06:33, 1. May 2023
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
use multiple structures and…
Mon, 06/29/2020 - 04:43

use multiple structures and dimension MAIN FILLER BLOCK=AIR SECONDARY FILLER BLOCK=AIR

BIOME CATCI PER CHUNK AND SO = 0

FLIUD BLOCK = AIR

TREE = ANYONE BUT NO DIRT SO WILL NOT SPAWN

Last seen on 14:30, 28. Mar 2024
Joined Jul 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
It is actually kind of…
Sat, 09/04/2021 - 11:06

It is actually kind of possible, I've been fiddling around with this. Basically, you have to make the village you want to spawn really common (1000000 of your custom structure per chunk), then you have to add a spawn condition to only spawn in specific ranges of coordinates (For example, x position is less than 16 but more than -16 or something). So you just need to do that with procedure blocks. That way, you can kind of confirm there's gonna be a village because it's common, but it'll only spawn where you want it to spawn. You just have to do that in coordinates you want your structures to be, then finally make the player teleport straight to x=0, z=0 or any coordinates when the player spawns. Sorry if my explaining is bad. And then for preventing too much world gen, you could either add a bedrock wall, or make it a dimension that loads like the end dimension. Hopefullly this helps.