Author Topic: Cubes Made Out Of 1x1 Plates  (Read 1077 times)

Got bored and made all the default cubes out of 1x1 plates.

4x4 - Brick count: 160


8x8 - Brick count: 1280


16x16 - Brick count: 10240


32x32 - Brick count: 81920


64x64 - Brick count: > 256000
« Last Edit: August 07, 2011, 11:56:27 PM by GenaralSkar »



Pictures are now better quality.

And if you want save for some reason I could post them.

64x64: < 256000?

Less than?

64x64: < 256000?

Less than?
He ran out of bricks to make it with.

I chose a 50x50x50 cube since the nearest rational cube root of 128,000 is 50.

Lattices
My computer could not handle 125,000 lattices and Blockland crashed.
Try it out yourself and see if your computer can handle it!

1x1







To do this on your own:

Save this as base/brick.cs:
Code: [Select]
function PlaceBrick(%pos, %db, %brickgroup)
{
    %x = getWord(%pos, 0);
    %y = getWord(%pos, 1);
    %z = getWord(%pos, 2);
    %color = 8;
    %colorfx = 0;
    %health = 10;
   
    %brick = new fxDTSBrick()
    {
datablock = %db;
position = %pos;
rotation = "0 0 0 0";
colorID = 0;
scale = "1 1 1";
angleID = 0;
colorfxID = 0;
shapefxID = 0;
isPlanted = 1;
    };

    %brickgroup.add(%brick);
    $server::BrickCount++;
    return %brick;
}

function servercmdspambricks(%client, %val)
{

    if(%val $= "lattice")
for(%z = 0; %z < 50; %z++)
    for(%y = 0; %y < 50; %y++)
for(%x = 0; %x < 50; %x++)
    PlaceBrick(%x SPC %y SPC (%z*3)+1.5, brick2x2x5girderData, %client.brickgroup);

    else if(%val $= "1x1")
for(%z = 0; %z < 50; %z++)
    for(%y = 0; %y < 50; %y++)
for(%x = 0; %x < 50; %x++)
    PlaceBrick(%x/2 SPC %y/2 SPC (%z*0.6)+0.3, brick1x1Data, %client.brickgroup);


}
Type this into the console: exec("base/brick.cs");
Type this into the chatbox: /spambricks [type]
Where [type] can be "lattice" or "1x1"

accepted into the building branch

64x64: < 256000?

Less than?
Didn't see that. Fixed it.


I had almost done 50x50x50 with lattices but when I looked up Blockland crashed :c
« Last Edit: August 08, 2011, 12:28:46 AM by GenaralSkar »