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
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Server NameSpecify the server nameHOSTNAMEPterodactyl ServerYesYes
MOTDSpecify the message of the dayMOTDWelcome to the serverYesYes
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 "-----------------------------------------"