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.

Port default
Game 6702
Yolks
NameTag
Monoghcr.io/ptero-eggs/yolks:mono_latest
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Mod Pack ModeSpecify the modpack type.MODPACKMODENONEYesYes
Warp ModeSpecify the warp type.WARPMODESUBSPACEYesYes
Game ModeSpecify the game type.GAMEMODESANDBOXYesYes
Game DifficultySpecify the gameplay difficulty of the server.DIFFICULTYNORMALYesYes
WhitelistedEnable white-listing.WHITELISTFalseNoNo
Server NameName of the server.SERVERNAMEDMP ServerYesYes
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 "-----------------------------------------"