Path of Titans

PlatformSupportNotes
Linux✅ NativeRecommended
Windows✅ Native
02

System Requirements

  • RAM: 4 GB minimum
  • CPU: 2 vCPU minimum
  • Storage: 30 GB available space
  • Network: Stable 20+ Mbps for full player capacity
  • Note: Dinosaur simulation and spawn mechanics are CPU-intensive
03

Installation (Linux)

1. Download via SteamCMD

bash
# Install SteamCMD
mkdir -p ~/steamcmd && cd ~/steamcmd
curl -sqL "https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz" | tar zxvf -

# Create server directory
mkdir -p /opt/path-of-titans

# Download dedicated server
./steamcmd.sh +login anonymous \
  +app_update 1328360 validate \
  +force_install_dir /opt/path-of-titans \
  +quit

AppIDs:

2. Server Configuration

Edit /opt/path-of-titans/Saved/Config/LinuxServer/Game.ini:

ini
[/Script/PathOfTitans.IGameSession]
ServerName=DeluxHost - Path of Titans
MaxPlayers=100
ServerPassword=
bPvPEnabled=true
bPvEEnabled=true

[/Script/PathOfTitans.POTGameMode]
bAllowAirGliding=true
bAllowSwimming=true
WaterDrag=0.9

[/Script/PathOfTitans.DinosaurCharacter]
GrowthRate=1.0
StarveTime=3600

3. Launch Script

Create /opt/path-of-titans/start.sh:

bash
#!/bin/bash
cd /opt/path-of-titans

./PathOfTitansServer/Binaries/Linux/PathOfTitansServer-Linux-Shipping \
  -Port=7777 \
  -SteamPort=7778 \
  -Server \
  -Log \
  -NoSteamClient
bash
chmod +x /opt/path-of-titans/start.sh
  • Game: 1328350
  • Dedicated Server: 1328360
04

Systemd Service

Create /etc/systemd/system/path-of-titans.service:

ini
[Unit]
Description=Path of Titans Dedicated Server
After=network.target

[Service]
Type=simple
User=potitans
WorkingDirectory=/opt/path-of-titans
ExecStart=/opt/path-of-titans/start.sh
Restart=on-failure
RestartSec=10
StandardOutput=journal
StandardError=journal

[Install]
WantedBy=multi-user.target
bash
sudo systemctl daemon-reload
sudo systemctl enable path-of-titans
sudo systemctl start path-of-titans
05

Firewall Configuration

bash
# UFW
sudo ufw allow 7777/udp
sudo ufw allow 7778/udp

# iptables
sudo iptables -A INPUT -p udp --dport 7777 -j ACCEPT
sudo iptables -A INPUT -p udp --dport 7778 -j ACCEPT

# Verify
sudo ss -ulnp | grep PathOfTitans
06

Mods & Workshop Integration

Path of Titans supports community mods via Alderon Games mod portal:

Installing Mods

bash
# Example mod installation
mkdir -p /opt/path-of-titans/Saved/Mods
cd /opt/path-of-titans/Saved/Mods
# Download mod .pak file
unzip mod-name.zip

Enable Mods in Configuration

Add to Game.ini:

ini
[/Script/PathOfTitans.POTGameMode]
ActiveMods=ModName1,ModName2,ModName3

Restart server to apply mods.

  • Visit Alderon Games Mod Portal
  • Download mod files
  • Place in /opt/path-of-titans/Saved/Mods/
07

Windows Installation

1. Download & Extract

2. Configuration

Edit Saved\Config\WindowsServer\Game.ini:

ini
[/Script/PathOfTitans.IGameSession]
ServerName=DeluxHost - Path of Titans
MaxPlayers=100
ServerPassword=

3. Batch File

Create start.bat:

batch
@echo off
cd /d C:\PathOfTitans
PathOfTitansServer\Binaries\Win64\PathOfTitansServer-Win64-Shipping.exe -Port=7777 -SteamPort=7778 -Server -Log

4. Firewall Rules

powershell
New-NetFirewallRule -DisplayName "POT-7777" -Direction Inbound -Action Allow -Protocol UDP -LocalPort 7777
New-NetFirewallRule -DisplayName "POT-7778" -Direction Inbound -Action Allow -Protocol UDP -LocalPort 7778

5. Windows Service

powershell
nssm install PathOfTitans "C:\PathOfTitans\PathOfTitansServer\Binaries\Win64\PathOfTitansServer-Win64-Shipping.exe" "-Port=7777 -SteamPort=7778 -Server -Log"
nssm start PathOfTitans
  • Use Alderon Games launcher or Steam
  • Install to C:\PathOfTitans
08

Tips & Tweaks

Admin Commands Reference

CommandSyntaxPurpose
/admin/admin [player_name]Grant/revoke admin
/ban/ban [player_name] [duration]Ban player
/kick/kick [player_name]Remove player
/teleport/teleport [x] [y] [z]Teleport self
/bring/bring [player_name]Teleport player to you
/promote/promote [player_name]Promote to admin
/heal/heal [player_name]Restore health
/spawn/spawn [dino_species]Spawn dinosaur
/mute/mute [player_name]Mute player chat

Dinosaur Spawn Settings

Configure dinosaur availability and growth:

ini
[/Script/PathOfTitans.DinosaurCharacter]
# Growth mechanics
GrowthRate=1.0              # 1.0 = default, 2.0 = 2x faster
MaxGrowthAge=3600           # seconds to reach adult
StarveTime=7200             # seconds until starvation

# Spawn control
MaxDinosPerPlayer=2
AllowedDinosaurs=Triceratops,Carnotaurus,Parasaurolophus

Quest Management

Manage custom quests and events:

ini
[/Script/PathOfTitans.QuestSystem]
bQuestsEnabled=true
DailyQuestResetTime=00:00
RewardMultiplier=1.0

Community Map Mods

Popular community-created maps:

Install via Alderon Games Mod Portal.

Server Performance Tuning

ini
[/Script/Engine.Engine]
bFixedFrameRate=true
FixedFrameRate=30
MaxTickRate=30

[/Script/PathOfTitans.POTGameMode]
# Reduce lag
MaxDinosPerArea=20
RenderDistance=5000
PhysicsTickRate=30

Monitoring Server Health

bash
# Check process status
systemctl status path-of-titans

# Monitor resources
top -p $(pgrep -f PathOfTitans)

# View logs
journalctl -u path-of-titans -f

# Active connections
netstat -ulnp | grep 7777

Growth Rate Tweaking

Balance progression difficulty:

ini
# Slower growth (harder)
GrowthRate=0.5

# Faster growth (easier)
GrowthRate=1.5

# Extreme survival
GrowthRate=0.25
StarveTime=1800  # 30 minutes to starvation

Admin Whitelisting

Restrict admin privileges to trusted players:

bash
# Edit configuration
nano /opt/path-of-titans/Saved/Config/LinuxServer/Game.ini

# Add whitelist section
[AdminWhitelist]
AdminPlayers=SteamID1,SteamID2,SteamID3

Schedule backups:

bash
#!/bin/bash
tar -czf /backups/pot-$(date +%Y%m%d).tar.gz \
  /opt/path-of-titans/Saved/

Add to crontab: 0 3 * * * /opt/path-of-titans/backup.sh

  • Sandbox Arena - PvP focused
  • Expanded Island - Larger exploration area
  • Jungle Expansion - Increased water and vegetation
  • Desert Biome - New terrain type

DeluxHost, founded in 2023, offers high-quality hosting solutions for various digital needs. We provide shared hosting, VPS, and dedicated servers with advanced security and global data centers.

© DeluxHost, All rights reserved. | VAT Number : IT17734661006
All Systems Operational