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.
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.
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 | - |
Ports required to run the server in a table format.
Port | default |
---|---|
Game | 8881 |
Name | Tag |
---|---|
ghcr.io/ptero-eggs/yolks:ubuntu | ghcr.io/ptero-eggs/yolks:ubuntu |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
Server Name | The servers name that is, among others, displayed on the public server page. | SERVER_NAME | Yes | Yes | |
Game Mode | Changes the servers game mode between adventure and creative. 0 = creative 1 = adventure | GAME_MODE | 1 | Yes | Yes |
Online Mode | Whether the server is publicly discoverable or not. | ONLINE_MODE | 0 | Yes | Yes |
Max Players | The maximum amount of players that can join the server at one time. | MAX_PLAYERS | 4 | Yes | Yes |
Password | The Password players need to enter to join the server | PASSWORD | Yes | Yes | |
Spawn Planet | The Planet players will initially spawn on. | SPAWN_PLANET | earth | Yes | Yes |
Autosave Interval | Time between automatic server saves | AUTOSAVE_INTERVAL | 30 | Yes | Yes |
[ADVANCED] Updates per Second | This setting should only be changed by advanced users. Changes the amount of times the server updates per second. | UPDATES_PER_SECOND | 25 | Yes | Yes |
[ADVANCED] Physics steps per update | This setting should only be changed by advanced users. Changes the amount of times the physics get calculated per game update. | PHYSICS_UPDATES_PER_UPDATE | 8 | Yes | Yes |
Admins | A line-seperated list of steamids from users that should get admin privileges. Visit https://steamid.io to get a steamid. | ADMINS | Yes | Yes | |
World name | The name of the world directory to use. | WORLD_NAME | Yes | Yes | |
Git Address | GIT_ADDRESS | https://github.com/batcholi/Archean_game_linux.git | Yes | No | |
Branch | BRANCH | alpha | Yes | No |
#!/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 ******************************************