the code you want to change is in servercmdstartDig()
when creating the bricks you need to give it the Center Point of the brick, and then align to the grid. The 4xCubeData bricks are 4x4 studs by 4 bricks tall which works out to 2 units by 2.4 units. so the center of that is 1,1,1.2
Once thats done, you should be able to build.
go from this:
for(%x = -5.5; %x <= 5.5; %x++)
for(%y = -5.5; %y <= 5.5; %y++)
{
Dig_PlaceCement(%x*2 SPC %y*2 SPC 0, "brick4xCubeData");
Dig_PlaceCement(%x*2 SPC %y*2 SPC 10, "brick4xCubeData");
}
to something like this:
for(%x = -5; %x <= 5; %x++)
for(%y = -5; %y <= 5; %y++)
{
Dig_PlaceCement(%x*2 SPC %y*2 SPC 1.2, "brick4xCubeData");
Dig_PlaceCement(%x*2 SPC %y*2 SPC 11.2, "brick4xCubeData");
}
I cant test this right now - but that should allow you to build on the center platform. but it will also screw up the rest of the bricks -- so use at your own risk until the rest of the code is adjusted.
Edit: Mabye i should make my own infinite mining server....