You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some way to load and maybe save NBT structures to the same place that structure blocks save and load them from.
Or load the NBT files from any file location that its allowed to access.
Maybe a function like structure_load(structureName, locationArray, [rotation], [mirror]) to load a saved structure into the world.
So if I use a command block to save a structure named "minecraft:test", i could load it with CommandHelper using structure_load("minecraft:test", ploc("Steve"))
to place it at Steve's location for example
The text was updated successfully, but these errors were encountered:
It's worth mentioning that most servers use schematics instead, and there's already support for that through the SKCompat extension and WorldEdit.
In regards to structures, there's no way to directly load/place one. However, Structure Blocks do have an API that can be used indirectly for this. We could add a function to set structure block data.
Thanks for telling me about the SKCompat extension. I am gonna try it out.
A set_structure_data function would be a good alternative. Right now I have a custom proc that makes CommandHelper run a vanilla minecraft command as console to set the structure block with its data and set the redstone block.
Some way to load and maybe save NBT structures to the same place that structure blocks save and load them from.
Or load the NBT files from any file location that its allowed to access.
Maybe a function like
structure_load(structureName, locationArray, [rotation], [mirror])
to load a saved structure into the world.So if I use a command block to save a structure named "minecraft:test", i could load it with CommandHelper using
structure_load("minecraft:test", ploc("Steve"))
to place it at Steve's location for example
The text was updated successfully, but these errors were encountered: