Author Topic: Custom bricks.  (Read 337 times)

I have been recently considering creating a custom brick pack. But, I wanted to make sure I got this right.

This is what the code should look like for a 2x2x2 brick. Catch me if I'm wrong:


Code: [Select]
Brick
2 2 ???


If I'm right. It should means:

Code: [Select]
Brick = Type of brick, special would be trees rounds would be well rounds
2 = height, for each 1 you go up, it would make it 3 plates higher
2 = width, for each 1 you go up, it would make it 1 plate wider
??? = what goes here? this is what's confusing me


Oh stuff. I think I got it.


So. For a 4x4x1 plate, the code would be:

Code: [Select]
Brick
4 4 1

I think :3

Sure is weird watching you think. You honestly thought you only needed an X and a Z to produce a brick? I guess it'll just decide what depth you wanted by itself.

Sure is weird watching you think. You honestly thought you only needed an X and a Z to produce a brick? I guess it'll just decide what depth you wanted by itself.

No. I know I need the X Y and Z, but, I couldn't figure out what the 3rd number was, until it occurred to me that it would be how many plates high it would be.