Endless room generating dimension

Started by Redotix99 on

Topic category: Help with modding (Java Edition)

Last seen on 20:09, 6. Jul 2019
Joined Jul 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Endless room generating dimension

I want to create a dimension that will just endlessly generate small rooms that are connected to each other in a maze like fashion but never lead anywhere. I imagine this would be done by providing MCreator with a bunch of room schematics that will just generate endlessly but I am not at all sure how to do this. Quite new to the tool.

Last seen on 01:42, 12. Feb 2024
Joined Jul 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Ok im not really good at…
Thu, 07/04/2019 - 00:43

Ok im not really good at explaining but i will try. 

I think you just have to make a procedure that "spawn" schematic like every 7 block (you need to make schematic 7x7). 

Procedure:

 

Repeat :

Spawn schematic (x + 7, y, z)

 

 

its most complicated but i think this will give you some inspiration (i already make a thing like that). If not i try to find my old procedure i use to make my infinite dungeon. Sorry if my english its bad...

Last seen on 20:09, 6. Jul 2019
Joined Jul 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thank you. This is something…
Thu, 07/04/2019 - 09:05

Thank you. This is something that will work very well. But Id like to add some variation. Different lenghts for each room, but I am guessing this is possible with some logic when it comes to connecting them. Thanks for the base, thats really all I need to get started right now