tshock legacy
GamesThe t-shock modded terraria server. https://tshock.co/
README
TShock
TShock provides Terraria servers with server-side characters, anti-cheat, and community management tools. https://tshock.co/
From their GitHub
TShock is a toolbox for Terraria servers and communities. That toolbox is jam packed with anti-cheat tools, server-side characters, groups, permissions, item bans, tons of commands, and limitless potential. It's one of a kind.
Server Ports
TShock, like Terraria, only requires a single port to run. The default is 7777
| Port | default |
|---|---|
| Game | 7777 |
Plugins may require ports to be added to the server.
Extra Information
If you want to download mods in the console, the startup command has to be changed.
New startup:
mono TerrariaServer.exe -ip 0.0.0.0 -port {{SERVER_PORT}} -maxplayers {{MAX_PLAYERS}}
This will remove the autocreate function, and will thus allow you to download mods and generate world. Afterwards, you can change it back with the correct world name to start automatic. Word name is set in the configuration panel.
Any version older then TShock v5 needs to use the legacy egg, and version newer or v5 must use the normal TShock one.
Migration from v4 to v5
If you're upgrading from TShock 4, you swith to the new egg copying the tshock configuration folder over (containing the sqlitedb file as well as the json configuration files, etc) to the new server, and starting the new server that way.
Docker Images (1)
| Name | Image |
|---|---|
mono | ghcr.io/ptero-eggs/yolks:mono_latest |
Startup Command
mono TerrariaServer.exe -ip 0.0.0.0 -port {{SERVER_PORT}} -maxplayers {{MAX_PLAYERS}} -world {{WORLD_NAME}}.wld -autocreate {{WORLD_SIZE}} Variables (4)
Max Players
The maximum number of players a server will hold.
- Environment:
MAX_PLAYERS- Default:
8- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|numeric|digits_between:1,3
World Size
Defines the worlds size. 3 sizes 1 (small), 2 (medium), 3 (large).
- Environment:
WORLD_SIZE- Default:
1- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|numeric|digits_between:1,3
World Name
The name for the world file.
- Environment:
WORLD_NAME- Default:
world- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|max:20
Tshock Version
The version on tshock that will be installed. Latest available is: v4.5.18!
- Environment:
TSHOCK_VERSION- Default:
v4.5.18- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|max:20
Installation Script
ghcr.io/ptero-eggs/installers:debian/bin/bash#!/bin/bash
# Vanilla tModloader Installation Script
#
# Server Files: /mnt/server
## install packages to get version and download links
apt update
apt install -y curl wget jq file unzip
## get release info and download links
LATEST_JSON=$(curl --silent "https://api.github.com/repos/Pryaxis/TShock/releases/latest")
RELEASES=$(curl --silent "https://api.github.com/repos/Pryaxis/TShock/releases")
if [ -z "$TSHOCK_VERSION" ] || [ "$TSHOCK_VERSION" == "latest" ]; then
DOWNLOAD_LINK=$(echo $LATEST_JSON | jq .assets | jq -r .[].browser_download_url)
else
VERSION_CHECK=$(echo $RELEASES | jq -r --arg VERSION "$TSHOCK_VERSION" '.[] | select(.tag_name==$VERSION) | .tag_name')
if [ "$TSHOCK_VERSION" == "$VERSION_CHECK" ]; then
DOWNLOAD_LINK=$(echo $RELEASES | jq -r --arg VERSION "$TSHOCK_VERSION" '.[] | select(.tag_name==$VERSION) | .assets[].browser_download_url')
else
echo -e "defaulting to latest release"
DOWNLOAD_LINK=$(echo $LATEST_JSON | jq .assets | jq -r .[].browser_download_url)
fi
fi
## mkdir and cd to /mnt/server/
mkdir -p /mnt/server
cd /mnt/server
## download release
echo -e "running: wget $DOWNLOAD_LINK"
wget $DOWNLOAD_LINK
FILETYPE=$(file -F ',' ${DOWNLOAD_LINK##*/} | cut -d',' -f2 | cut -d' ' -f2)
if [ "$FILETYPE" == "gzip" ]; then
tar xzvf ${DOWNLOAD_LINK##*/}
elif [ "$FILETYPE" == "Zip" ]; then
unzip -o ${DOWNLOAD_LINK##*/}
else
echo -e "unknown filetype. Exeting"
exit 2
fi
echo -e "install complete"