Structure Lib
The Structure Lib library significantly simplifies working with structures in the Better Than Adventure modification for Minecraft Beta 1.7.3. This tool is based on the multi-part block technology from the catalyst mod.
Saving Structures
To save the desired structure, use the command:
/structure_lib save modid name x y z maxX maxY maxZ
After saving, the structure file is placed at the path /assets/modid/structure
Code Usage
Example of using the library in your mod:
RevampeStructure revampStructure = new RevampeStructure(StructureLib.MOD_ID, "test", "test", true, true);
revampStructure.placeStructure(world, x, y, z);
Required Dependencies
Structure Lib requires the halplibe mod to function