Egg Repository

Pterodactyl Community Egg Repository

Path Of Titans

Path of Titans is a multiplayer dinosaur survival video game. Survive as a dinosaur in a rich ecosystem filled with intelligent AI creatures and up to 200 other players.

Read Me

Path Of Titans

Install notes

This could be a little buggy or not well tested because made on the fast hand.

You need to open these ports before running the server 7777, 7778, 7779, 7780, 7781. They are require for RCON, seeing your servr on the list and etc.

Other documentation

If you are experienced the I could reccomend using this documentation website on the github DOCS

Get the AUTH token at https://alderongames.com/oauth/hosting-token. p.s. YOU NEED TO OWN the game

Server Ports

Ports required to run the server in a table format.

Portdefault
Game7777
Reserved port7778
Rcon7779
Stats7780
Query7781

Notes

7777 is the default port, but any port can be used. You need to assign to network port 7779 if you want to use RCON Also you need to open port 7778 and 7781 for the query, so it can appear on the server list. 7780 is Stats port.

7777, 7781 open for UDP 7778, 7779, 7780 both protocols

Yolks
NameTag
ghcr.io/ptero-eggs/yolks:debianghcr.io/ptero-eggs/yolks:debian
Variables and Startup

Startup Command

./AlderonGamesCmd-Linux --game path-of-titans --server true --beta-branch {{BETA_BRANCH}} --auth-token {{AG_AUTH_TOKEN}} --install-dir ./server/ && ./server/PathOfTitansServer.sh {{SERVER_MAP}}?listen?MaxPlayers={{SERVER_MAX_PLAYERS}} -RconPort={{RCON_PORT}} -nullRHI -ServerName={{SERVER_NAME}} -ServerGUID={{SERVER_GUID}} -BranchKey={{BETA_BRANCH}} -Database={{SERVER_DB}} -log

Variables

Server Map

Environment Variable: SERVER_MAP
Default Value: Island
User Viewable:
User Editable:
Max Players

Environment Variable: SERVER_MAX_PLAYERS
Default Value: 100
User Viewable:
User Editable:
Server name

Environment Variable: SERVER_NAME
Default Value: YoutServerName
User Viewable:
User Editable:
GUID

Use https://guidgenerator.com/

Environment Variable: SERVER_GUID
Default Value:
User Viewable:
User Editable:
Branch

Choose between production or demo-public-test

Environment Variable: BETA_BRANCH
Default Value: production
User Viewable:
User Editable:
Database mode

Server can use a Local or Remote Database. Specified using Local or Remote. We recommend using a Local Database unless you plan on connecting shared character data between servers.

Environment Variable: SERVER_DB
Default Value: Local
User Viewable:
User Editable:
Auth Token

Get your AUTH token there https://alderongames.com/oauth/hosting-token !!YOU NEED TO OWN THE GAME!!

Environment Variable: AG_AUTH_TOKEN
Default Value:
User Viewable:
User Editable:
Query port

Environment Variable: QUERY_PORT
Default Value: 7778
User Viewable:
User Editable:
Rcon port

Environment Variable: RCON_PORT
Default Value: 7779
User Viewable:
User Editable:
Install Script
#!/bin/bash
apt-get update && apt-get install -y --no-install-recommends apt-utils apt-transport-https ca-certificates libunwind8 icu-devtools openssl libkrb5-3 zlib1g libuuid1 dos2unix gnupg gnupg2 debian-archive-keyring gcc g++ lib32gcc-s1 lib32z1 lib32stdc++6 iproute2 gdb libsdl1.2debian libfontconfig libcurl4
apt-get autoremove --purge -y
mkdir -p /mnt/server
cd /mnt/server && curl -o AlderonGamesCmd-Linux https://launcher-cdn.alderongames.com/AlderonGamesCmd-Linux-x64
chmod +x /mnt/server/AlderonGamesCmd-Linux
chown -R root:root /mnt
export HOME=/mnt/server
Installation Imageghcr.io/ptero-eggs/installers:debianInstallation Entrypointbash