Tekkit SMP
GamesTekkit SMP contains the full range of mods from Tekkit 2, plus the extra mods that were originally dropped in the transition from Technic SSP (to Technic SMP) to Tekkit, in favour of multiplayer and Bukkit support: mainly Thaumcraft, Mystcraft, and Mo' Creatures. The new Tekkit SMP expands on that with various carefully selected Thaumcraft and Mystcraft addons, alongside Mo' Creatures Extended, and smaller custom additions such as Re-Crystallized Wing. Electro-Magic Tools is another starring mod, being an addon to both Industrial Craft and Thaumcraft, combining the worlds of tech and magic.
README
Minecraft: Tekkit SMP
https://www.technicpack.net/modpack/tekkit-smp.1988819
Server Ports
The minecraft server requires a single port for access (default 25565) but plugins may require extra ports to enabled for the server.
| Port | default |
|---|---|
| Game | 25565 |
Docker Images (2)
| Name | Image |
|---|---|
Java 8 | ghcr.io/ptero-eggs/yolks:java_8 |
Java 11 | ghcr.io/ptero-eggs/yolks:java_11 |
Startup Command
java -server -Xms128M -Xmx{{SERVER_MEMORY}}M -Dterminal.jline=false -Dterminal.ansi=true -Dfml.queryResult=confirm -jar forge.jar nogui Variables (2)
Modpack Version
The version of Tekkit SMP to download. Overrides BUILD TYPE, if set.
- Environment:
MODPACK_VERSION- Default:
None- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
nullable|string|max:10
Build Type
The type of server jar to download from Technic Solder.
- Environment:
BUILD_TYPE- Default:
recommended- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|in:recommended,latest
Installation Script
ghcr.io/ptero-eggs/installers:alpineash#!/bin/ash
# Tekkit SMP Installation Script
#
# Server Files: /mnt/server
apk update
apk add --no-cache curl zip unzip jq
mkdir -p /mnt/server
cd /mnt/server
BUILD_TYPE=${BUILD_TYPE:-"recommended"}
if [ -z "$MODPACK_VERSION" ]; then
MODPACK_VERSION=v$(curl -s https://solder.technicpack.net/api/modpack/tekkit-smp | jq -r ".${BUILD_TYPE}")
fi
echo "Downloading Tekkit SMP version ${MODPACK_VERSION} (This may take a while!)"
curl -sSL "https://servers.technicpack.net/Technic/servers/tekkit-smp/Tekkit-SMP_Server_${MODPACK_VERSION}.zip" -o "Tekkit-SMP_Server_${MODPACK_VERSION}.zip"
unzip -o "Tekkit-SMP_Server_${MODPACK_VERSION}.zip"
rm -rf "Tekkit-SMP_Server_${MODPACK_VERSION}.zip"
rm -f RestoreBackup.bat LaunchServer.bat LaunchServer.sh RestoreBackup.sh
mv forge-1.12.2-*.jar forge.jar
if [ ! -f server.properties ]; then
curl -o server.properties https://raw.githubusercontent.com/ptero-eggs/game-eggs/main/minecraft/java/server.properties
fi
echo "Done"