KSP DMP

games
Report Issue

Dark Multiplayer mod server for Kerbal Space Program

Contributors:
README

Kerbal Space Program

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!

Server Ports

Ports required to run the server in a table format.

Port default
Game 6702
Docker Images (1)
Name Image
Mono ghcr.io/ptero-eggs/yolks:mono_latest
Startup Command
mono DMPServer.exe
Variables (6)

Mod Pack Mode

Specify the modpack type.

Environment:
MODPACKMODE
Default:
NONE
User Viewable:
User Editable:
Rules:
required|string|in:NONE,CKAN,GAMEDATA

Warp Mode

Specify the warp type.

Environment:
WARPMODE
Default:
SUBSPACE
User Viewable:
User Editable:
Rules:
required|string|in:MCW_FORCE,MCW_VOTE,MCW_LOWEST,SUBSPACE_SIMPLE,SUBSPACE,NONE

Game Mode

Specify the game type.

Environment:
GAMEMODE
Default:
SANDBOX
User Viewable:
User Editable:
Rules:
required|string|in:SANDBOX,CAREER,SCIENCE

Game Difficulty

Specify the gameplay difficulty of the server.

Environment:
DIFFICULTY
Default:
NORMAL
User Viewable:
User Editable:
Rules:
required|string|in:EASY,NORMAL,MODERATE,HARD,CUSTOM

Whitelisted

Enable white-listing.

Environment:
WHITELIST
Default:
False
User Viewable:
User Editable:
Rules:
required|string|in:True,False

Server Name

Name of the server.

Environment:
SERVERNAME
Default:
DMP Server
User Viewable:
User Editable:
Rules:
required|string|max:48
Installation Script
Container: ghcr.io/ptero-eggs/installers:debian
Entrypoint: bash
#!/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 "-----------------------------------------"