custom-lobby is a small minecraft lobby server with Minestom as its core.
custom-lobby is built for my private network, so it may or may not fit your needs. It includes a map, got only one instance and small gimmicks just for fun.
You could either just download a release or you compile the server yourself using the following commands under Linux
git clone https://github.com/self-crafted/custom-lobby.git
cd custom-lobby
./gradlew build
The server jar will be located at build/libs/custom-lobby-<VERSION>.jar
.
Note that for compiling you need to use a JDK 17.
To run the server you need to have a Java 17 runtime installed. Use the following command to start the server for the first time.
java -jar custom-lobby-<VERSION>.jar
This generates a start.sh
script and a settings file.
The settings are located at ./config/custom-lobby.json
with these default values:
{
"SERVER_IP": "localhost",
"SERVER_PORT": 25565,
"MODE": "OFFLINE", // may be OFFLINE, ONLINE, BUNGEECORD or VELOCITY
"VELOCITY_SECRET": "",
"TERMINAL_DISABLED": false // default false
}
You have to restart the server for changes in there to take effect.
Note that the newest version of this server only supports 1.19.2 clients. You may need to use ViaVersion on the proxy.
Restarting the server calls the ./start.sh
script.
The generated script will restart the server with no way to access the console.
So keep in mind that you will need an extension providing remote access or use tmux/screen in the start.sh
to access the console.
This server itself does not add some API. But it features Minestom's API so you can use it from within extensions.
PRs accepted.
Small note: If editing the README, please conform to the standard-readme specification.
This project is licensed under the Apache License Version 2.0.