Author Topic: 2x Height Bricks?  (Read 2831 times)

I screwed up my Add-Ons folder, removing several files and one of the brick (packs) I need most is gone. I don't know if it is specifically called "2x Height Brick Pack" or goes by another name. If you take a look at the screenshot below, what I'm looking for is; instead of just 1x5x2, I'd want 1x1x2, 1x2x2, 1x3x2, and so on. Can anyone help me?


Make the bricks yourself. It's easy.

Make a file and write this in it.
Code: [Select]
1 14 1
BRICK

Name it "1x14x1.blb"

After that, make a file called "server.cs" and write the following in it:
Code: [Select]
datablock fxDTSBrickData (brick1x14FData)
{
BrickFile = "./1x14F.blb";
Category = "Plates";
SubCategory = "1x";
UiName = "1x14F";
iconName = "Base/Client/UI/Unknown.png";
};

You can copy and paste the code in server.cs and the blb file. You need to edit it accordingly. Note that the brick height is in PLATES. 3 plates == 1 brick. To make what you want, do this.

1x1x3.blb
Code: [Select]
1 1 3
BRICK

1x2x3.blb
Code: [Select]
1 2 3
BRICK

1x1x3.blb
Code: [Select]
1 3 3
BRICK

server.cs
Code: [Select]
datablock fxDTSBrickData (brick1x14FData)
{
BrickFile = "./1x1x3.blb";
Category = "Bricks";
SubCategory = "2 Height";
UiName = "1x1x3";
iconName = "Base/Client/UI/Unknown.png";
};
{
BrickFile = "./1x2x3.blb";
Category = "Bricks";
SubCategory = "2 Height";
UiName = "1x2x3";
iconName = "Base/Client/UI/Unknown.png";
};
{
BrickFile = "./1x3x3.blb";
Category = "Bricks";
SubCategory = "2 Height";
UiName = "1x3x3";
iconName = "Base/Client/UI/Unknown.png";
};

These are all text files so Notepad can be used. (Although Notepad++ is better)


Wait, I screwed up. server.cs should be like this:
Code: [Select]
datablock fxDTSBrickData (brick1x1x3Data)
{
BrickFile = "./1x1x3.blb";
Category = "Bricks";
SubCategory = "2 Height";
UiName = "1x1x3";
iconName = "Base/Client/UI/Unknown.png";
};

datablock fxDTSBrickData (brick1x2x3Data)
{
BrickFile = "./1x2x3.blb";
Category = "Bricks";
SubCategory = "2 Height";
UiName = "1x2x3";
iconName = "Base/Client/UI/Unknown.png";
};

datablock fxDTSBrickData (brick1x3x3Data)
{
BrickFile = "./1x3x3.blb";
Category = "Bricks";
SubCategory = "2 Height";
UiName = "1x3x3";
iconName = "Base/Client/UI/Unknown.png";
};

UI name is the text below the icon. Icon is self-explainitory. Category is the tab and Subcategory is the text above the horizontal line.


I'll resort to this should I not be able to find the brick pack I'm looking for, mainly because I've been looking for this file for a while and am pretty sure it came with print bricks etc.

I've never done print bricks. If you remember the name of the brickpack, I might have it.

I've never done print bricks. If you remember the name of the brickpack, I might have it.
Okay thanks. I went onto some popular building servers and found what I was looking for, except I don't know the name of the brick pack. All I can do is post a picture of it.


Brick_DemiansBB2 seems to be the brickpack you're looking for.

BlackDragonIV's brickpack has 2x height AND 3x height
get those

Interestingly it turns out I actually have BOTH BlackDragonIV's brickpack, as well as Brick_DemianBB2's. Since the both you of claimed that each brickpack has 2x height bricks, I was wondering if the two packs were colliding with eachother; so I launched my server with only one pack loaded each time. Either nothing would happen, or I would not even have a 2x Height section at all on my brick GUI. It is also worth noting I have Brick_DemianBB, and Brick_DemianBB3 in my Add-Ons folder as well. Any ideas?



Weirdly, even though I said I had Brick_DemiansBB in my Add-Ons folder as well as Brick_DemiansBB2 and Brick_DemiansBB3, it doesn't seem to show up on the list.

I took a quick look at Bricks_DemiansBB2. It has x2 height. Try checking your console for any error reports.

My console.log is linked onto this post, if you scroll down there IS something about brick errors, here is a quick cut.

ERROR: Brick datablock "brick1x2x2Data" has the same uiname as "plate1x2x2Data" (1x2x2) - removing.
BackTrace: ->ServerSettingsGui::clickLaunchGame->createServer->onServerCreated->verifyBrickUINames


By that console.log is from when I launched the server with ONLY Bricks_DemiansBB, Bricks_DemiansBB2 and Bricks_DemiansBB3. I removed BlackDragonIV's brickpack at the time.

the 2 heaight bricks from each of those packs might be conflicting

the 2 heaight bricks from each of those packs might be conflicting
No, like I said I only launched Bricks_DemiansBB, Bricks_DemiansBB2 and Bricks_DemiansBB3. BlackDragonIV's brickpack wasn't in the Add-Ons folder at the time of that console.log.