Author Topic: deleting grounds?  (Read 652 times)

is there a way i can delete the ground so that i can load bricks anywhere?

my current problem is i have a save that is trying to load bricks in the ground, and i need to get rid of the ground so it can load all of them.

ive tried doing (groundid).delete(); but that didnt work. it does delete the ground, but bricks still cant load beyond a certain point.

if someone could help that'd be wonderful <3

you could try shifting the build up instead

for some reason I remember badspot saying a way to load a build with an offset

you could try shifting the build up instead

for some reason I remember badspot saying a way to load a build with an offset
if this way exists id surely like to know :o

ah nvm i think i found a method.

for future reference:

type the following code into your console, and set the last digit to your specified height:
$LoadingBricks_PositionOffset = "0 0 32";

ah nvm i think i found a method.

for future reference:

type the following code into your console, and set the last digit to your specified height:
$LoadingBricks_PositionOffset = "0 0 32";
i apologize, thats the wrong cmd. use this instead:
function calcSaveOffset(){$LoadingBricks_PositionOffset = "0 0 32";}$LoadingBricks_PositionOffset = "0 0 32";

Badspot

  • Administrator
$loadOffset = "0 0 32"; will work.  You do not have to sabotage the function.

is the offset in bricks or in torque units?

Presumably bricks or you'd probably have some wonky decimal garbage going on because of the way our bricks are proportioned irregularly relative to TU. Might be in plates.

$loadOffset = "0 0 32"; will work.  You do not have to sabotage the function.
Oh my god, I never knew about that.