Egg Repository

Pterodactyl Community Egg Repository

KSP DMP

Dark Multiplayer mod server for Kerbal Space Program

Read Me

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.

Portdefault
Game6702
Yolks
NameTag
Monoghcr.io/ptero-eggs/yolks:mono_latest
Variables and Startup

Startup Command

mono DMPServer.exe

Variables

Mod Pack Mode

Specify the modpack type.

Environment Variable: MODPACKMODE
Default Value: NONE
User Viewable:
User Editable:
Warp Mode

Specify the warp type.

Environment Variable: WARPMODE
Default Value: SUBSPACE
User Viewable:
User Editable:
Game Mode

Specify the game type.

Environment Variable: GAMEMODE
Default Value: SANDBOX
User Viewable:
User Editable:
Game Difficulty

Specify the gameplay difficulty of the server.

Environment Variable: DIFFICULTY
Default Value: NORMAL
User Viewable:
User Editable:
Whitelisted

Enable white-listing.

Environment Variable: WHITELIST
Default Value: False
User Viewable:
User Editable:
Server Name

Name of the server.

Environment Variable: SERVERNAME
Default Value: DMP Server
User Viewable:
User Editable:
Install Script
#!/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 "-----------------------------------------"
Installation Imageghcr.io/ptero-eggs/installers:debianInstallation Entrypointbash