Guest User

Untitled

a guest
Sep 18th, 2016
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. //the most prominent known bugs:
  2. //sometimes -1 prod occurs; it seems to have something to do with simulation during loading
  3. //ratings are screwed up somehow - they seem to sometimes expire way too quickly.
  4. //gas has some rounding errors
  5.  
  6.  
  7. //robadmin:
  8. // RoBAdmin is a special mode for performing RoB-related admin tasks.
  9. // in RoBAdmin you are allowed to do anything to anyone's stuff for free. If you destroy bricks on an owned property then it will follow normal refunding rules to the owner.
  10. // you can /roadname roads, you define new city blocks by standing in them and using /newplot, and you can repossess lots manually with /claimplot
  11. // additionally, the admin camera is only allowed in robadmin mode.
  12. // only superadmins can toggle robadmin mode, by saying /robadmin
  13.  
  14.  
  15. //first time setup:
  16. //If you're using a map with nice flat ground near (0,0,0), put the files inside the /saves folder into Blockland/saves/Slate or whatever other load directory you're going to use for easy start-up.
  17. //open and modify rob2/variables.cs as necessary/desired.
  18. //rename this file you're reading to server.cs and put in a description.txt and it should hopefully work as-is when zipped up.
  19.  
  20. //new game:
  21. // Load up the save file, or otherwise set up so you have your center "public" lot spanning (0,0) to (32,32) [use four 32x32 plates] and put at least one spawn on it.
  22. // Once you are done building stuff, enter this into the console (copy-paste): $RoB::LoadComplete = true;
  23. // /robgamestart to start prod; I usually wait a day or two so fewer people feel like they got there "late".
  24.  
  25. //loading a game:
  26. // if you don't want to simulate prod for the time the server was shut down, console $DoNotSimulate = true;
  27. // make sure you are in robadmin mode
  28. // /robloadbricks
  29. // wait for the "#/# bricks loaded" message to appear. It's not necessary to wait for all bricks to ghost.
  30. // /robloaddata
  31. // once that's done, the game is ready; you can leave robadmin mode.
Add Comment
Please, Sign In to add comment