Blockland Forums > Modification Help
Loading a server-sided save onto a dedicated server
Xalos:
Before someone tells me to use
--- Code: ---schedule(1000,0,serverDirectSaveFileLoad,"Saves/Slate/Lava Trench Wars "@$mapVers@".bls", 3, "", 0, 1);
--- End code ---
I should like to point out that's what I am already doing. This gives the following error in the dedicated.bat console:
--- Code: ---ERROR: ServerLoadSaveFile_Tick() - $LoadingBricks_BrickGroup does not exist!
BackTrace: ->ServerLoadSaveFile_Tick
--- End code ---
As best I can infer from this, ServerLoadSaveFile_Tick() isn't working in the way it's supposed to.
If anyone knows how to make this work, then I would be quite thankful.
otto-san:
you're trying to use $LoadingBricks_BrickGroup but it doesn't exist
Destiny/Zack0Wack0:
--- Quote from: otto-san on October 02, 2010, 01:04:23 AM ---you're trying to use $LoadingBricks_BrickGroup but it doesn't exist
--- End quote ---
obviously
This happens to me as well. I would also like to know what I'm doing wrong.
otto-san:
post the script
it would probably help
Xalos:
--- Quote from: otto-san on October 02, 2010, 09:34:16 AM ---post the script
it would probably help
--- End quote ---
That pretty much is the script
It loads bricks, well, theoretically
--- Code: ---schedule(1000,0,serverDirectSaveFileLoad,"Saves/Slate/Lava Trench Wars "@$mapVers@".bls", 3, "", 0, 1);
schedule(1000,0,echo,"Loading bricks (Hopefully)");
--- End code ---