Additional Setup
Setting maximum server slots:
By default the server doesn't limit the player count, but you can change it if you want by setting server.slots to a number. (0 is for unlimited)
Setting minimum/maximum game slots:
This settings allow to change the minimum and maximum amount of players in one lobby. To change them set:
- game.minslots to a number of minimum amount of players.
- game.maxslots to a number of maximum amount of players.
Saving player stats:
To save player statistics you'll need to set stats.saving to "true".
Then you'll need to select a way of saving those statistics. The solutions are:
-
A MongoDB Database - Server will save player data in an external MongoDB Database - Set:
- stats.type to "mongo"
- stats.ip to database's IP
- stats.port to database's port
- stats.db to the collection (made specifically for Spectrum Survival) in the Database
- stats.pass to the password set in the database.
-
A SQLite Database - Server will save player data in a .db file - Set:
- stats.type to "sqlite"
- stats.db to a filename (like "players.db", the file doesn't need to exist, the server should create it by itself)
- stats.ip, stats.port and stats.pass to "null".
-
A Directory - Server will save player data in a directory in the server's root directory - Set:
- stats.type to "dir"
- stats.db to a directory name (like "players", the directory doesn't need to exist, the server should create it by itself)
- stats.ip, stats.port, stats.pass to "null".