Egg Repository

Pterodactyl Community Egg Repository

Archean

Archean invites you to unleash your creativity alone or with friends in a creative sandbox mode.Design and build vehicles, bases, rockets, space stations and much more using customizable modular blocks.Create unique configurations using components, program their behavior and explore an environment free of constraints.\nTest your builds, refine your designs and defy the laws of physics.Archean is a game in development focused on engineering and build.

Read Me

Archean

Archean invites you to unleash your creativity alone or with friends in a creative sandbox mode. Design and build vehicles, bases, rockets, space stations and much more using customizable modular blocks.Create unique configurations using components, program their behavior and explore an environment free of constraints. Test your builds, refine your designs and defy the laws of physics. Archean is a game in development focused on engineering and build.

Installation/System Requirements

Bare Minimum Recommended
Processor Any mid/high-end should work -
RAM 2GB 8 GB
Storage 700 MB 2 GB
Network Depends on your patience :P -

Server Ports

Ports required to run the server in a table format.

Port default
Game 8881
Yolks
NameTag
ghcr.io/ptero-eggs/yolks:ubuntughcr.io/ptero-eggs/yolks:ubuntu
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Server NameThe servers name that is, among others, displayed on the public server page.SERVER_NAMEYesYes
Game ModeChanges the servers game mode between adventure and creative. 0 = creative 1 = adventureGAME_MODE1YesYes
Online ModeWhether the server is publicly discoverable or not.ONLINE_MODE0YesYes
Max PlayersThe maximum amount of players that can join the server at one time.MAX_PLAYERS4YesYes
PasswordThe Password players need to enter to join the serverPASSWORDYesYes
Spawn PlanetThe Planet players will initially spawn on.SPAWN_PLANETearthYesYes
Autosave IntervalTime between automatic server savesAUTOSAVE_INTERVAL30YesYes
[ADVANCED] Updates per SecondThis setting should only be changed by advanced users. Changes the amount of times the server updates per second.UPDATES_PER_SECOND25YesYes
[ADVANCED] Physics steps per updateThis setting should only be changed by advanced users. Changes the amount of times the physics get calculated per game update.PHYSICS_UPDATES_PER_UPDATE8YesYes
AdminsA line-seperated list of steamids from users that should get admin privileges. Visit https://steamid.io to get a steamid.ADMINSYesYes
World nameThe name of the world directory to use.WORLD_NAMEYesYes
Git AddressGIT_ADDRESShttps://github.com/batcholi/Archean_game_linux.gitYesNo
BranchBRANCHalphaYesNo
Install Script
#!/bin/bashcd /mnt/server## add git ending if it's not on the addressif [[ ${GIT_ADDRESS} != *.git ]]; then    GIT_ADDRESS=${GIT_ADDRESS}.gitfi## pull git bot repo with update functionalityif [ "$(ls -A /mnt/server/archean-server)" ]; then    echo -e "/mnt/server/archean-server directory is not empty."    cd archean-server/    if [ -d .git ]; then        echo -e ".git directory exists"        if [ -f .git/config ]; then            echo -e "loading info from git config"            ORIGIN=$(git config --get remote.origin.url)        else            echo -e "files found with no git config"            echo -e "closing out without touching things to not break anything"            exit 10        fi    fi    if [ "${ORIGIN}" == "${GIT_ADDRESS}" ]; then        echo "pulling latest from github"        git pull    fielse    echo -e "/mnt/server/archean-server is empty.\ncloning files into repo"    if [ -z ${BRANCH} ]; then        echo -e "cloning default branch"        git clone --single-branch ${GIT_ADDRESS} archean-server/    else        echo -e "cloning ${BRANCH}'"        git clone --single-branch --branch ${BRANCH} ${GIT_ADDRESS} archean-server/    fificurl -o "archean-data/server/server.ini" --create-dirs https://raw.githubusercontent.com/pelican-eggs/games-standalone/refs/heads/main/archean/server.iniecho ******************************************echo Installation Completedecho ******************************************