Author Topic: What is the File Location of the Default Bricks?  (Read 559 times)

While looking for the default bricks in my add-ons folder, I didn't find them. I found arches, V15, etc, but not the regular bricks (example: 1x1 brick)

Does anyone know where they are located? Help would be appreciated.

I'm guessing they're in the encrypted files
they're so integral to the game that I don't think it's easy to be able to access/modify them

If you're talking about the .blb files, they are located in the Blockland/base/data/bricks directory, the file containing the datablock is in one of the .dso files.
You can always find the location of a brick file by echoing the brickFile field of a the datablock while hosting.
For example:

Code: [Select]
echo(brick1x1Data.brickFile);Or if you do not know the datablock name, just lay a ghost brick of it down and do the following.
Code: [Select]
echo(findClientbyname("Replace with User").player.tempBrick.dataBlock.brickFile);