Egg Repository

Pterodactyl Community Egg Repository

Tekkit 2

Those of you who are nostalgic for the early days of Tekkit (now known as Tekkit Classic), will love what awaits you in Tekkit 2! With a collection of nostalgic mods and plenty of new improvements, Tekkit 2 is sure to capture the feeling of possibility and consequence that you felt while exploring the world of machines and contraptions that made the original fun. Keep an eye out for classics such as IndustrialCraft, ProjectE (Equivalent Exchange), Project Red (RedPower) and BuildCraft, alongside additions such as Galacticraft and Tekkit Jaffa Cakes! The world is yours to bend and exploit to your will, whether through alchemy or sprawling factories and mines. What fresh horrors will you create?

Read Me

Minecraft: Tekkit 2

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
Yolks
NameTag
Java 8ghcr.io/ptero-eggs/yolks:java_8
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Modpack VersionMODPACK_VERSIONv1.0.5YesYes
Install Script
#!/bin/ash
# Tekkit Installation Script
#
# Server Files: /mnt/server
apt update
apt -y install curl zip unzip

mkdir -p /mnt/server

cd /mnt/server

curl -sSL https://servers.technicpack.net/Technic/servers/tekkit-2/Tekkit-2_Server_$MODPACK_VERSION.zip -o Tekkit-2_Server_$MODPACK_VERSION.zip

unzip -o Tekkit-2_Server_$MODPACK_VERSION.zip

rm -rf Tekkit-2_Server_$MODPACK_VERSION.zip

rm RestoreBackup.bat

rm LaunchServer.bat

rm LaunchServer.sh

rm RestoreBackup.sh

mv forge-1.12.2-*.jar forge.jar

if [ ! -f server.properties ]; then
    echo -e "Downloading MC server.properties"
    curl -o server.properties https://raw.githubusercontent.com/ptero-eggs/game-eggs/main/minecraft/java/server.properties
fi

echo "done"