Egg Repository

Pterodactyl Community Egg Repository

Xonotic

This is for the default xonotic setup.

Read Me

Xonotic

The Free and Fast Arena Shooter

Server Ports

Xonotic requires 1 port

Port default
Game 26000
Yolks
NameTag
SteamCMD (Debian)ghcr.io/pterodactyl/steamcmd:debian
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Max PlayersMax players allowed on the serverMAX_PLAYERS16YesYes
VersionVERSION0.8.6YesYes
Install Script
#!/bin/ash
# Vanilla Xonotic Installation Script
#
# Server Files: /mnt/server
apk add rsync --no-cache

mkdir -p /mnt/server

cd /mnt/server

wget -O xonotic.zip http://dl.xonotic.org/xonotic-${VERSION}.zip

unzip -o xonotic.zip

mv Xonotic/* ./

./misc/tools/rsync-updater/update-to-autobuild.sh

# create initial folder structure to copy the default config to, because it only gets created on first startup
mkdir -p .xonotic/data
cp -n server/server.cfg .xonotic/data/server.cfg || true # do not overwrite existing config file

rm -rf COPYING Makefile *glx* *glx *sdl* *sdl *linux32* *exe *.app *.sh bin* GPL* Docs/ gmqcc/ source/ misc/ Xonotic/ xonotic.zip


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