Author Topic: serverDirectSaveFileLoad(): Brick group does not exist  (Read 1604 times)

Sometimes, when I type this into the console:
Code: [Select]
serverDirectSaveFileLoad("saves/Mansion.bls", 3, "", 1);...this error appears in chat:


Is there a quick way to solve the problem?

Assign $LoadingBricks_BrickGroup to a brickgroup.
If I am correct, the public brickgroup is BrickGroup_888888 (It's either with or without the underscore).

Assign $LoadingBricks_BrickGroup to a brickgroup.
What if I want to load the bricks under their saved owners? I thought this screws up trust.

Regardless of ownership, $LoadingBricks_BrickGroup needs to be set for various reasons, including handling ownership of floating bricks.

Regardless of ownership, $LoadingBricks_BrickGroup needs to be set for various reasons
So assigning that variable to a brick group does not affect trust? The ownership will be defined only be the serverDirectSaveFileLoad() arguments?

It shouldn't unless there's floating bricks, or you set it to be the loader's trust.

It shouldn't unless there's floating bricks, or you set it to be the loader's trust.
Okay, thank you.