Blockland Forums > General Discussion
Super Creeper - Mr. Wallet's hit survival gamemode is back!
Sentry:
How many times can you upgrade your creepkill?
chrisbot6:
--- Quote from: Aduioa on November 26, 2013, 09:00:48 AM ---Thank you. I noticed that on the subway map players were spawning outside the map.
--- End quote ---
This happens because the map does not have time to load completely before the minigame is set up. This means the script is unable to find spawn bricks.
I can fix this easily by adding more time onto the start game schedule. Unless... Does serverDirectSaveFileLoad have a callback?
GhostStar:
when will you finish the subway?
Zeblote:
--- Quote from: chrisbot6 on November 26, 2013, 10:52:59 AM ---This happens because the map does not have time to load completely before the minigame is set up. This means the script is unable to find spawn bricks.
I can fix this easily by adding more time onto the start game schedule. Unless... Does serverDirectSaveFileLoad have a callback?
--- End quote ---
Actually, you need to replace
--- Code: ---%brick = BrickGroup_888888.NTObject_["spawn", getRandom(0, BrickGroup_888888.NTObjectCount_["spawn"])];
--- End code ---
With
--- Code: ---%brick = BrickGroup_888888.NTObject_["spawn", getRandom(0, BrickGroup_888888.NTObjectCount_["spawn"]-1)];
--- End code ---
chrisbot6:
--- Quote from: Zeblote on November 26, 2013, 12:46:23 PM ---Actually, you need to replace
--- Code: ---%brick = BrickGroup_888888.NTObject_["spawn", getRandom(0, BrickGroup_888888.NTObjectCount_["spawn"])];
--- End code ---
With
--- Code: ---%brick = BrickGroup_888888.NTObject_["spawn", getRandom(0, BrickGroup_888888.NTObjectCount_["spawn"]-1)];
--- End code ---
--- End quote ---
AH. I wouldn't have noticed this.