Egg Repository

Pterodactyl Community Egg Repository

parkertron

The stupid chatbot parkertron by Parkervcp. https://github.com/parkervcp/parkertron

Read Me

parkertron

Their Github

Purely a chatbot. Not even a smart one.

Runs the Pterodactyl @support bot

Server Ports

There are no ports required for parkertron

Yolks
NameTag
ghcr.io/ptero-eggs/yolks:bot_parkertronghcr.io/ptero-eggs/yolks:bot_parkertron
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Install Script
#!/bin/bash
# parkertron Installation Script
#
# Server Files: /mnt/server
export GOPATH=$HOME/go
export PATH=$GOROOT/bin:$GOPATH/bin:$PATH

cd

apt update

apt install -y tesseract-ocr tesseract-ocr-eng libtesseract-dev

echo "pulling the parkertron git repo"

git clone https://github.com/parkervcp/parkertron.git

cd parkertron/

echo "building parkertron"

go build 

echo "build complete copying parkertron and example configs over"

cp parkertron /mnt/server/

if [ -d /mnt/server/configs ]; then
    echo "Files exist already"
else
    cp -r /root/parkertron/configs/ /mnt/server/
fi

echo "Install complete. If you watched this. Congrats."