Path Of Titans

games
Report Issue

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.

Contributors:
README

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.

Port default
Game 7777
Reserved port 7778
Rcon 7779
Stats 7780
Query 7781

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

Docker Images (1)
Name Image
ghcr.io/ptero-eggs/yolks:debian ghcr.io/ptero-eggs/yolks:debian
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 (9)

Server Map

Environment:
SERVER_MAP
Default:
Island
User Viewable:
User Editable:
Rules:
required|string|max:20

Max Players

Environment:
SERVER_MAX_PLAYERS
Default:
100
User Viewable:
User Editable:
Rules:
required|numeric|max:200

Server name

Environment:
SERVER_NAME
Default:
YoutServerName
User Viewable:
User Editable:
Rules:
required|string|max:25

GUID

Use https://guidgenerator.com/

Environment:
SERVER_GUID
Default:
None
User Viewable:
User Editable:
Rules:
required|string|max:40

Branch

Choose between production or demo-public-test

Environment:
BETA_BRANCH
Default:
production
User Viewable:
User Editable:
Rules:
required|string|max:15

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:
SERVER_DB
Default:
Local
User Viewable:
User Editable:
Rules:
required|string|in:Local,Remote

Auth Token

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

Environment:
AG_AUTH_TOKEN
Default:
None
User Viewable:
User Editable:
Rules:
required|string|max:1500

Query port

Environment:
QUERY_PORT
Default:
7778
User Viewable:
User Editable:
Rules:
required|integer|between:1024,65535

Rcon port

Environment:
RCON_PORT
Default:
7779
User Viewable:
User Editable:
Rules:
required|integer|between:1024,65535
Installation Script
Container: ghcr.io/ptero-eggs/installers:debian
Entrypoint: bash
#!/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