Dark Multiplayer
Dark Multiplayer is an up-to-date mod adding the long awaited multiplayer feature to Kerbal Space Program while including support for other mods!
Ports required to run the server in a table format.
Port | default |
---|---|
Game | 6702 |
Name | Tag |
---|---|
Mono | ghcr.io/ptero-eggs/yolks:mono_latest |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
Mod Pack Mode | Specify the modpack type. | MODPACKMODE | NONE | Yes | Yes |
Warp Mode | Specify the warp type. | WARPMODE | SUBSPACE | Yes | Yes |
Game Mode | Specify the game type. | GAMEMODE | SANDBOX | Yes | Yes |
Game Difficulty | Specify the gameplay difficulty of the server. | DIFFICULTY | NORMAL | Yes | Yes |
Whitelisted | Enable white-listing. | WHITELIST | False | No | No |
Server Name | Name of the server. | SERVERNAME | DMP Server | Yes | Yes |
#!/bin/bash
mkdir -p /mnt/server
cd /mnt/server
V=$(curl -s https://d-mp.org/downloads | grep "DMP Server" | awk -F 'href="' 'NR==2 {print $2}' | awk -F '"' '{print $1}') # /builds/release/v0.3.8.3/DMPServer.zip
echo "Download link: https://d-mp.org${V}"
curl -sSL -o DMPServer.zip https://d-mp.org${V}
unzip -o DMPServer.zip
mv DMPServer/* ./
rm -rf DMPServer
rm DMPServer.zip
## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"