Urban Terror

games
Report Issue

Urban Terror started as a realism based "total conversion" mod for Quake III Arena. Nowadays, Urban Terror is played using the free, stand-alone, ioquake3 engine modified, which doesn't require Quake III Arena, in addition to being an add-on to id Software's Quake III Arena.

Contributors:
README

Urban Terror

From their Website

Urban Terror™ is a free multiplayer first person shooter developed by FrozenSand, that will run on any Quake III Arena compatible engine. It is available for Windows, Linux and Macintosh.

Urban Terror can be described as a Hollywood tactical shooter; somewhat realism based, but the motto is "fun over realism". This results in a very unique, enjoyable and addictive game.

Installation/System Requirements

Bare Minimum Recommended
Processor Almost any proccessor will work -
RAM 256 MiB 512 MiB
SWAP 512 MiB 512 MiB (Swap not needed if RAM is 1024MiB)
Storage 1500 MiB 2000 MiB
Network Any reasonable speed -
Game Ownership Not needed The game is free, and server doesn't need the game to work.

Server Ports

Port default
Game 27960

Game Infos

Gamemodes: 0 = Free For All, 1 = Last Man Standing, 3 = Team DeathMatch, 4 = Team Survivor, 5 = Follow The Leader, 6 = Capture And Hold, 7 = Capture The Flag, 8 = Bomb Mode, 9 = Jump, 10 = Freeze Tag, 11 = Gun Game You can edit the Server.cfg in /home/container/q3ut4/server.cfg as you wish after creating the server.

Docker Images (1)
Name Image
ghcr.io/ptero-eggs/yolks:debian ghcr.io/ptero-eggs/yolks:debian
Startup Command
./Quake3-UrT-Ded.{{EXE}} +exec "server.cfg" +set fs_game "q3ut4" +set fs_basepath "/home/container" +set fs_homepath "/home/container" +set dedicated "2" +set com_hunkmegs "{{HUNKMEGS}}" +set net_port "{{SERVER_PORT}}"
Variables (12)

Version

32bit / 64bit server version. it is recommended to use the 64bit server, unless you are experiencing issues.

Environment:
EXE
Default:
x86_64
User Viewable:
User Editable:
Rules:
required|string|in:x86_64,i386

Hunkmegs

How much memory is allocated during server start up. Available options: 128, 160, 192, 256 MB

Environment:
HUNKMEGS
Default:
128
User Viewable:
User Editable:
Rules:
required|string|in:128,160,192,256

Server Hostname

Put your Servername into here.

Environment:
SERVER_NAME
Default:
My Awesome Pterodactyl Server
User Viewable:
User Editable:
Rules:
required|string|max:55

Join Message

The message the player will receive when joining the server.

Environment:
JOIN_MESSAGE
Default:
Welcome to this Server, have fun!
User Viewable:
User Editable:
Rules:
required|string|max:50

Max Players

Maximum players that can connect to the server.

Environment:
SERVER_MAXCLIENTS
Default:
16
User Viewable:
User Editable:
Rules:
required|numeric|between:1,32

RCON Password

Set the Rcon Password for Admin commands. Can be empty to disable RCON.

Environment:
RCON_PASSWORD
Default:
None
User Viewable:
User Editable:
Rules:
nullable|string|max:20

Server Password

If you want to set a password to connect on the server set this here.

Environment:
SERVER_PASSWORD
Default:
None
User Viewable:
User Editable:
Rules:
nullable|string|max:20

Map

Choose the initial Map the server should start with. (ONLY CHANGE IF YOU KNOW THE MAP IS EXISTING) Server wont start without it!

Environment:
SERVER_MAP
Default:
ut4_casa
User Viewable:
User Editable:
Rules:
required|string|max:50

Gametype / Gamemode

Sets the Gamemode you want to play. 1 = Last Man Standing, 2 = Free For All, 3 = Team DeathMatch, 4 = Team Survivor, 5 = Follow The Leader, 6 = Capture And Hold, 7 = Capture The Flag, 8 = Bomb Mode, 9 = Jump, 10 = Freeze Tag, 11 = Gun Game

Environment:
SERVER_GAMETYPE
Default:
3
User Viewable:
User Editable:
Rules:
required|numeric|in:1,2,3,4,5,6,7,8,9,10,11

Bots

Want to have bots in your game select how many you want. (More than 16 bots tend to crash the server or add lag, use with caution!) Disclaimer: "Bots are not officialy supported by FS!!!"

Environment:
BOT_MINPLAYERS
Default:
0
User Viewable:
User Editable:
Rules:
required|numeric|max:16

Map Timelimit

Time in minutes before map is over. (0 = never)

Environment:
SERVER_TIMELIMIT
Default:
10
User Viewable:
User Editable:
Rules:
required|numeric|max:999

Friendlyfire

Sets if friendlyfire is on or off. (Teamkill your teammates is bad hmmkay?)

Environment:
SERVER_FRIENDLYFIRE
Default:
1
User Viewable:
User Editable:
Rules:
required|integer|max:1
Installation Script
Container: ghcr.io/ptero-eggs/installers:debian
Entrypoint: bash
#!/bin/bash

mkdir -p /mnt/server
cd /mnt/server

apt update
apt -y install libxml2-utils sed #Install needed dependencies for the official Urban Terror Updater (Not for the Gameserver itself)

echo "Downloading Urban Terror"
curl -sSL -o UrTUpdater-Ded.sh https://github.com/FrozenSand/UrTUpdater/releases/download/v4.0.3-RC1/UrTUpdater-v4.0.3-Ded.sh 
#Download from Github because the Webpage does not allow "direct Downloads"

echo "Updating Urban Terror" #Accept the EULA and input the needed variables to download the latest version of the Serverfiles (4.3.4 for now)
bash /mnt/server/UrTUpdater-Ded.sh << EOF
y
1
1
1
n
y
n
EOF

# Set up default configs
mv /mnt/server/q3ut4/server_example.cfg /mnt/server/q3ut4/server.cfg
mv /mnt/server/q3ut4/mapcycle_example.txt /mnt/server/q3ut4/mapcycle.txt

chmod +x /mnt/server/Quake3-UrT-Ded.x86_64
chmod +x /mnt/server/Quake3-UrT-Ded.i386

# Use sed to insert extra config options as many people ask for Bots ingame
sed -i '/\/\/pb_sv_enable/a\set  bot_enable 1\nset  bot_minplayers 0' /mnt/server/q3ut4/server.cfg

## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"