Egg Repository

Pterodactyl Community Egg Repository

Spacestation 14

Space Station 14 tells the story of an ordinary shift on a space station gone wrong. Immerse yourself into your role, tinker with detailed systems, and survive the chaos in this round-based multiplayer role playing game.

Read Me

Spacestation 14

From their Site

Documentation

Minimum RAM warning

Minimum required memory to run the server. 2GB is recommended. 3GB+ is preferred

Minimum Sorage warning

Minimum required storage to run the server. Example: 100MiB is recommended. 2GiB+ is preferred

Server Ports

Ports required to run the server in a table format.

Port default
Game 1212 (TCP+ UDP)

Notes

1212 is the default port, but any port can be used.

Yolks
NameTag
Dotnet 8ghcr.io/ptero-eggs/yolks:dotnet_8
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Server nameThe server hostnameSERVER_NAMEMyServerYesYes
Server tickrateThe tickrate of the server. Default is 60SERVER_TICK60YesYes
Max playersSERVER_MAX_PLAYERS256YesNo
Install Script
#!/bin/bash

V=$(curl -sSL https://central.spacestation14.io/builds/wizards/builds.html | grep "The version is"  | sed -n 's/.*<span class="versionNumber">\([^<]*\)<\/span>.*/\1/p')
ARCH=$([[ "$(uname -m)" == "x86_64" ]] && echo "linux-x64" || echo "linux-arm64")

mkdir -p /mnt/server
cd /mnt/server

echo "Running: curl -sSL -o server_linux.zip https://cdn.centcomm.spacestation14.com/builds/wizards/builds/${V}/SS14.Server_${ARCH}.zip"
curl -sSL -o server_linux.zip "https://cdn.centcomm.spacestation14.com/builds/wizards/builds/${V}/SS14.Server_${ARCH}.zip"
unzip -o server_linux.zip
rm server_linux.zip

chmod +x Robust.Server

## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"