Large structures are cut off

Started by JayStarPlays on

Topic category: Help with Minecraft modding (Java Edition)

Joined Jul 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Large structures are cut off

I am trying to have a large structure generate, but parts of it are always cut off by the edges of the chunk. 

I've tried having a smaller structure generate and then place the structure I want in place of it, but from what I've seen in the game and on the forums, the "on structure instance generated" procedure simply doesn't work.

Are there any other ways I could work around this?

Joined Nov 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can create a block that…
Sun, 07/02/2023 - 01:31

You can create a block that tries to generate your structure on itself every tick by setting that as its tick procedure and setting the tick rate to 1.

Then, set "on structure instance generated" to that one procedure block "schedule update tick in [1] tick at X Y Z."

This has worked for me.

Joined Nov 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
To clarify, you would…
Sun, 07/02/2023 - 01:32

To clarify, you would generate that one sole block as your structure, and the "schedule update tick" thing would ensure it updates, as normally blocks generated as part of structures do not update.

Joined Jul 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Hey that seems to have…
Sun, 07/02/2023 - 05:23

Hey that seems to have worked, thanks!

Joined Apr 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Have you done through the…
Sun, 07/02/2023 - 07:09

Have you done through the procedure? If yes, can you please show it?