Author Topic: Brick tutorial?  (Read 1260 times)

I know there's a brick tutorial on how to make them, but I can't find it...link please? :3


do you need to know to plant bricks or something

http://wiki.returntoblockland.com/index.php?title=Category:Bricks

That only tells the part of a brick file. I don't know how to make that stuff, etc.

do you need to know to plant bricks or something

No. I mean how to make custom bricks for others to download.

Like custom shaped bricks or just regular bricks?

well i want to find that out to

i think he meens custom

I mean like default bricks, but resized.

Code: [Select]
datablock fxDTSBrickData (brick1x1x30Data)//datablock
{
brickFile = "./1x1x30.blb";//file
category = "Pitfall Bricks";//category
subCategory = "10 Hights";//sub
uiName = "1x1x10";//name
};

Code: [Select]
datablock fxDTSBrickData (brick1x1x30Data)//datablock
{
brickFile = "./1x1x30.blb";//file
category = "Pitfall Bricks";//category
subCategory = "10 Hights";//sub
uiName = "1x1x10";//name
};

That doesn't really help...

Make a BLB(I think it is) file for the bricks size:
Code: [Select]
X Y Z
BRICK
Rename your file to what ever you want.
Then make a server.cs and put in:
Code: [Select]
datablock fxDTSBrickData (brick*SIZE HERE*Data)//datablock
{
brickFile = "./Filename here";
category = "Bricks";
subCategory = "Sucategory here.";
uiName = "*ACTUAL BRICK NAME* ";
};
Repeat for ever brick.

how so?
replace the numbers with the sizes you want, it's X Y Z
X is left and right
Y is forward and back
Z is up and down, in plates

then the category is which tab you want it to be in

the subcategory is the division under the tabs

the uiname is what you want it to be called under the icon


[/do'h]