64x64: < 256000?Less than?
I chose a 50x50x50 cube since the nearest rational cube root of 128,000 is 50.LatticesMy computer could not handle 125,000 lattices and Blockland crashed.Try it out yourself and see if your computer can handle it!1x1To 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"
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); }