Egg Repository

Pterodactyl Community Egg Repository

JTS3ServerMod

Setup: - Install the latest version - Go into config/server1 and edit JTS3ServerMod_server.cfg - Save and start the server Author: https://www.stefan1200.de/forum/index.php?topic=2.0

Read Me

TeamSpeak3 Bots

Some of these bots support other services but are primarily TeamSpeak3 bots

JTS3ServerMod

JTS3ServerMod Please Check their site for an in depth on the bot.

Yolks
NameTag
ghcr.io/pterodactyl/yolks:java_8ghcr.io/pterodactyl/yolks:java_8
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
VersionVersion to download. Use latest to install latest versionSERVER_VERSIONlatestYesYes
Install Script
#!/bin/bash
# JTS3ServerMod
#
# Server Files: /mnt/server
# All required packages are installed in the used install image ghcr.io/ptero-eggs/installers:debian

export HOME=/mnt/server
mkdir -p /mnt/server
cd /mnt/server

if [ -z "$SERVER_VERSION" ] || [ "$SERVER_VERSION" == "latest" ]; then
  echo -e "Downloading latest version with curl -L "https://www.stefan1200.de/dlrequest.php?file=jts3servermod &
  type=.zip" -o JTS3ServerMod.zip"
  curl -L "https://www.stefan1200.de/dlrequest.php?file=jts3servermod&type=.zip" -o JTS3ServerMod.zip
else
  echo -e "running curl -L "https://www.stefan1200.de/downloads/JTS3ServerMod_$SERVER_VERSION.zip" -o JTS3ServerMod.zip"
  curl -L "https://www.stefan1200.de/downloads/JTS3ServerMod_$SERVER_VERSION.zip" -o JTS3ServerMod.zip
fi

# no need to continue if we don't have an archive
if [ ! -f JTS3ServerMod.zip ]; then
  echo "JTS3ServerMod.zip not found. Something went wrong. Exiting"
  exit 2
fi

unzip JTS3ServerMod.zip
rm JTS3ServerMod.zip JTS3ServerMod-Windows.exe JTS3ServerMod-Windows_NoWindow.exe jts3servermod_startscript.sh
echo -e "Installation completed.\nConfiguration of the server must be done in the config folder to proceed."