Path of Titans
| Platform | Support | Notes |
|---|---|---|
| Linux | ✅ Native | Recommended |
| Windows | ✅ Native |
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
Installation (Linux)
1. Download via SteamCMD
# 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:
[/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:
#!/bin/bash
cd /opt/path-of-titans
./PathOfTitansServer/Binaries/Linux/PathOfTitansServer-Linux-Shipping \
-Port=7777 \
-SteamPort=7778 \
-Server \
-Log \
-NoSteamClient
chmod +x /opt/path-of-titans/start.sh
- Game: 1328350
- Dedicated Server: 1328360
Systemd Service
Create /etc/systemd/system/path-of-titans.service:
[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
sudo systemctl daemon-reload
sudo systemctl enable path-of-titans
sudo systemctl start path-of-titans
Firewall Configuration
# 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
Mods & Workshop Integration
Path of Titans supports community mods via Alderon Games mod portal:
Installing Mods
# 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:
[/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/
Windows Installation
1. Download & Extract
2. Configuration
Edit Saved\Config\WindowsServer\Game.ini:
[/Script/PathOfTitans.IGameSession]
ServerName=DeluxHost - Path of Titans
MaxPlayers=100
ServerPassword=
3. Batch File
Create start.bat:
@echo off
cd /d C:\PathOfTitans
PathOfTitansServer\Binaries\Win64\PathOfTitansServer-Win64-Shipping.exe -Port=7777 -SteamPort=7778 -Server -Log
4. Firewall Rules
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
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
Tips & Tweaks
Admin Commands Reference
| Command | Syntax | Purpose |
|---|---|---|
| /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:
[/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:
[/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
[/Script/Engine.Engine]
bFixedFrameRate=true
FixedFrameRate=30
MaxTickRate=30
[/Script/PathOfTitans.POTGameMode]
# Reduce lag
MaxDinosPerArea=20
RenderDistance=5000
PhysicsTickRate=30
Monitoring Server Health
# 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:
# 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:
# Edit configuration
nano /opt/path-of-titans/Saved/Config/LinuxServer/Game.ini
# Add whitelist section
[AdminWhitelist]
AdminPlayers=SteamID1,SteamID2,SteamID3
Schedule backups:
#!/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
Gerelateerde artikelen
CS2
How to install and configure a Counter-Strike 2 dedicated server on Linux VPS with SteamCMD
Palworld
Create a dedicated Palworld server on Linux with SteamCMD. Configuration, ports and automatic startup.
Rust
Install and manage a Rust server (Facepunch) on Linux with SteamCMD. Includes automatic updates, Oxide plugins and optimizations.
