Author Topic: How do you make a blockland block?  (Read 947 times)

Yea.. i want to make a block for a mod and idk how to make a block lol i tried searching on the forums but couldnt find it D:

by block i mean brick ex. a brick that is 2x2 3x4

Read THIS and search for something about packaging add ons, if you don't know how.

If all you want is a plain cube, of any size, you can just do this for the BLB:
Code: [Select]
WidthNumber LengthNumber HeightNumber
BRICK
HeightNumber is in plates.

For example, a regular 1x1 brick would be:
Code: [Select]
1 1 3
BRICK

And a 1x1 flat would be:
Code: [Select]
1 1 1
BRICK

Read THIS and search for something about packaging add ons, if you don't know how.

If all you want is a plain cube, of any size, you can just do this for the BLB:
Code: [Select]
WidthNumber LengthNumber HeightNumber
BRICK
HeightNumber is in plates.

For example, a regular 1x1 brick would be:
Code: [Select]
1 1 3
BRICK

And a 1x1 flat would be:
Code: [Select]
1 1 1
BRICK


Ty