-
Notifications
You must be signed in to change notification settings - Fork 0
How to host Multiplayer
Free Method (Simplest method)
Own dedicated server (Minecraft server hoster)
Linux root server (Docker)
The Modpack contains a mod called "World Host". This mod has a server that your client connects to, this server is used to communicate with other clients using World Host.
-
Open a single player world.
-
Add your friend like in the following:
-
Hit the [esc] key on your keyboard and press "World host online".
-
Press the "Friends" button on the bottom left.
-
Add your friend(s) and let them add you back.
-
-
Open your world like you would with open to LAN but now that button is called "Open to Friends".
-
Now your friend(s) can join over the main menu on the "Multiplayer" button and then on the "Friends" button on the top right. I don't have enough friends to show you though.
Your server needs 4GB RAM or higher. A few CPU cores would also be great.
The steps can be slightly diefferent depending on your Minecraft server hoster.
📦Download server Jar here📦
- Just upload it to your Minecaft server hoster.
- Make sure the Java version 22 is selected (or make it be recognized as Minecraft 1.21.1).
- Start your server!
If your server hoster didn't already make you do this you have to
accept the eula (Click here for info)
1. Edit your "eula.txt" in your server files. There is an option "eula=false" set it to "eula=true".If that didn't work ask your server support or try the next section.
- Create a normal 1.21.1 Minecraft server like you would normally do.
- Find your FTP Login data and download WinSCP or any other FTP client.
- In your FTP client you put in your Login credentials.
Now you should have access to your Minecraft server's files. - Look for a
.jar
file which looks like it gets launched by your Minecraft server hoster when you start the server. (probably something likeserver.jar
orminecraft-server.jar
or something similar). - Copy its full filename and rename our downloaded boundless-server.jar with the exact same copied name so the hoster thinks its the same file.
- Delete the .jar on your server and replace it with our renamed boundless server.
- Start your server!
If your server hoster didn't already make you do this you have to
accept the eula. (Click here for info)
1. Edit your "eula.txt" in your server files. There is an option "eula=false" set it to "eula=true".- Select the Boundless Horizons modpack (Slug:"boundless"/ID:"ScTwzzH2")
- Remove the following mods:
"Sounds"
Sodium extra
Watermedia
World Host
- Start your server!
- Create a new directory.
- Create a file called
docker-compose.yml
with the following contents:
services:
mc:
container_name: boundless-mc
image: itzg/minecraft-server
tty: true
stdin_open: true
restart: always
ports:
- "25565:25565"
- "24454:24454/udp"
environment:
EULA: "TRUE"
MEMORY: "4g"
MOD_PLATFORM: MODRINTH
MODRINTH_MODPACK: ScTwzzH2
MODRINTH_EXCLUDE_FILES: |
sound
sodium-extra
watermedia
world-host
better-modlist
better-ping-display-fabric
MODRINTH_OVERRIDES_EXCLUSIONS: |
resourcepacks/*
shaderpacks/*
SERVER_NAME: "A Boundless Horizons Modpack Server"
MOTD: "§2A§6 Boundless §1Horizons §2Modpack Server"
ICON: "https://raw.githubusercontent.com/vaporvee/BoundlessHorizons/refs/heads/main/assets/icon.png"
DIFFICULTY: "NORMAL"
SPAWN_PROTECTION: "0"
volumes:
# attach the relative directory 'data' to the container's /data path
- ./data:/data
- Run docker compose up -d in that directory.
- Server should now be installing and then starting!
Open the Minecraft Server console:
docker attach boundless-mc
Follow the logs of the container:
docker compose logs -f
Check container status:
docker compose ps
Force stop the container:
docker compose stop
More information about that Docker Image: https://docker-minecraft-server.readthedocs.io/