Posted June 7, 20205 yr Hey guys, I'm trying to save a structure that is above the 32x32x32 structure block limit. I want to use it as a structure that is going to spawn in my custom biome, how should I save it? Should I save multiple nbt files and then try to put them all together at the structure generation? Or is there some trick I could use to make the process easier? Thanks In Advance!
June 7, 20205 yr 47 minutes ago, Axspeo said: Hey guys, I'm trying to save a structure that is above the 32x32x32 structure block limit. I want to use it as a structure that is going to spawn in my custom biome, how should I save it? Should I save multiple nbt files and then try to put them all together at the structure generation? Or is there some trick I could use to make the process easier? Thanks In Advance! I believe you will have to build your structure in pieces, you could check out the vanilla igloo to see how it puts itself together, it's not nearly as complicated as say the woodland mansion
June 7, 20205 yr Alternatively, you can look into my github, I have done something similar, but it can consume some time to properly implement it into your mod. https://github.com/Budschie/Deepnether-Mod/tree/master/src/main/java/de/budschie/deepnether/structures https://github.com/Budschie/Deepnether-Mod/blob/master/src/main/java/de/budschie/deepnether/structures/StructureBase.java https://github.com/Budschie/Deepnether-Mod/blob/master/src/main/java/de/budschie/deepnether/structures/PaletteStructure.java Edited June 7, 20205 yr by Budschie
June 8, 20205 yr Thanks to both of you! I ended up just using the vanilla igloo class tho I have a problem tho, Sometimes some chunks don't seem to generate? All pieces are spawning but some chunks from the pieces don't, any idea why? EDIT: Nevermind it was because those chunks weren't part of the biome the structure could spawn in Edited June 8, 20205 yr by Axspeo
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.