Sorry. Got lazy and started to make some spaceships. back to work!
Okie sounds good.
I have a script that generates random asteroids but they are spammy and only look good like a third of the time if you maybe wanted to do anything with it.
function genisleclient()
{
for(%b=0; %b<3; %b++)
{
for(%a=0; %a<32; %a++)
{
if(%b == 2)
%generalshape = mpow(%a+12, 3)*(32-%a)/40000;
else
{
%generalshape = 18*msin(%a*3.14159265/32);
%noise = %noise + getrandom(-700, 700)/500;
}
if(%noise > 2.2)
%noise -= 0.5;
else if(%noise < -2.2)
%noise += 0.5;
$value[%b, %a] = %generalshape + %noise;
echo(%a SPC %generalshape SPC %noise SPC $value[%b, %a]);
}
%noise = 0;
}
//none - 17
//almost - 15
//success - 0
for(%a=0; %a<32; %a++)
{
echo("tick" SPC %a);
for(%b=0; %b<32; %b++)
{
for(%c=0; %c<32; %c++)
{
%x = $value0_[%c] * $value1_[%b] * $value2_[%a];
if(%x > 666)
%y = 0;
else
%y = 17;//trans paint can color
commandtoserver('usespraycan', %y);
commandtoserver('plantbrick');
commandtoserver('supershiftbrick', 1, 0, 0);
}
commandtoserver('supershiftbrick', -32, -1, 0);
}
commandtoserver('supershiftbrick', 0, 32, 1);
}
}
just put down a cube brick on the ground and type genisleclient(); into the console and it should get right to work.
make sure bricks per second is at 999