Egg Repository

Pterodactyl Community Egg Repository

ClassiCube(MGC)

Debian based MCGalaxy Egg.

Read Me

Classicube MCGalaxy

MCGalaxy

MCGalaxy is a fully featured and customisable ClassiCube Server Software based on MCForge/MCLawl.

Server Ports

Portdefault
Game25565
Yolks
NameTag
ghcr.io/ptero-eggs/yolks:mono_latestghcr.io/ptero-eggs/yolks:mono_latest
Variables and Startup

Startup Command

mono MCGalaxyCLI.exe

Variables

Server Name

Specify the server name

Environment Variable: HOSTNAME
Default Value: Pterodactyl Server
User Viewable:
User Editable:
MOTD

Specify the message of the day

Environment Variable: MOTD
Default Value: Welcome to the server
User Viewable:
User Editable:
Install Script
#!/bin/bash

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

DOWNLOAD_URL="https://cdn.classicube.net/client/mcg/release/MCGalaxy.zip"

echo -e "Downloading MCGalaxy from ${DOWNLOAD_URL}..."
curl -ssL -o mcgalaxy.zip "${DOWNLOAD_URL}"

if [ $? -ne 0 ]; then
    echo "Failed to download the file. Exiting."
    exit 1
fi

echo "Extracting MCGalaxy..."
unzip -j mcgalaxy.zip
rm mcgalaxy.zip
chmod +x *.dll *.exe

echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"
Installation Imageghcr.io/ptero-eggs/installers:debianInstallation Entrypointbash