A modded EditSaber for making beat saber maps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.5 KiB

  1. # Mediocre Mapper Multi-Mapper Server setup
  2. ## What you need to start
  3. * the latest MMMM server files
  4. * install node.js from https://nodejs.org/en/
  5. * port forward a TCP port of your choosing. 17425 is default.
  6. * create a song in MediocreMapper and set up difficulties, offset and BPM
  7. ## Setting up the server
  8. ### config.json setup
  9. ```
  10. "folder" - Folder name of the song
  11. "difficulty": - Difficulty to be used (Easy/Normal/Hard/Expert/ExpertPlus)
  12. "port": - Port you'll be using
  13. "password": - Password to the server, can be left empty for no password
  14. ```
  15. ### config.json example
  16. ```
  17. {
  18. "folder": "The Other Side",
  19. "difficulty": "ExpertPlus",
  20. "port": 17425,
  21. "password": "967"
  22. }
  23. ```
  24. ## Starting the server
  25. * copy the song from your Mediocre Mapper's /CustomSongs/ Directory into your Server's /Songs/ directory
  26. * set up the config.json as above
  27. * open up a command line and navigate to the folder containing server.js. Or shift + right click in the folder in Windows Explorer to and open up PowerShell
  28. * run command: `npm install`
  29. * run command: `node ./server.js`
  30. * all done!
  31. ## Other info
  32. Server saves every 5 minutes, so at most 5 minutes of progress is lost in the case of a crash.
  33. No more than one person using the same name can be in a session. sometimes this bugs out and there's an improper disconnect. Have server restarted after a save if you're unable to join with the same name and really don't wanna change it. or just change it.
  34. Full or partial information can be supplied to the server by typing for example `node ./server.js --difficulty "ExpertPlus"`