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.

Portdefault
Game1212 (TCP+ UDP)

Notes

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

Yolks
NameTag
Dotnet 9ghcr.io/ptero-eggs/yolks:dotnet_9
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

URL="https://wizards.cdn.spacestation14.com/fork/wizards"

V=$(curl -s "$URL" | grep -m1 -oP '<span[^>]*class="[^"]*\bversionNumber\b[^"]*"[^>]*>\K[^<]+')

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 ${URL}/version/${V}/file/SS14.Server_${ARCH}.zip"
curl -sSL -o server_linux.zip "${URL}/version/${V}/file/SS14.Server_${ARCH}.zip"
unzip -o server_linux.zip
rm server_linux.zip

chmod +x Robust.Server

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