Blockland Forums > Gallery
Cubes Made Out Of 1x1 Plates
<< < (2/2)
Jasa1:

--- Quote from: Conan on August 07, 2011, 10:51:03 PM ---64x64: < 256000?

Less than?

--- End quote ---
He ran out of bricks to make it with.
Kalphiter:

--- Quote from: Kalphiter on January 16, 2010, 02:45:10 PM ---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: ---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);


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

--- End quote ---
Flamecannon:
accepted into the building branch
GenaralSkar:

--- Quote from: Conan on August 07, 2011, 10:51:03 PM ---64x64: < 256000?

Less than?

--- End quote ---
Didn't see that. Fixed it.


--- Quote from: Kalphiter on August 07, 2011, 11:34:23 PM ---

--- End quote ---
I had almost done 50x50x50 with lattices but when I looked up Blockland crashed :c
Navigation
Message Index
Previous page

Go to full version