Grand Theft Auto Connected
gamesGrand Theft Auto Connected is a custom scriptable multiplayer modification for multiple Grand Theft Auto games.
README
Grand Theft Auto Connected
The GTAC Grand Theft Auto Connected is a custom scriptable multiplayer modification for multiple Grand Theft Auto games.
Server Ports
GTAC requires one port for both UDP/TCP
| Port | default |
|---|---|
| Game | 22000 |
Docker Images (1)
| Name | Image |
|---|---|
ghcr.io/ptero-eggs/yolks:debian | ghcr.io/ptero-eggs/yolks:debian |
Startup Command
./Server Variables (4)
Game type
Sets the game this server will support. Available options: gta:iii, gta:vc, gta:sa, gta:ug, gta:iv, gta:eflc
- Environment:
GAMETYPE- Default:
gta:iv- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|in:gta:iii,gta:vc,gta:sa,gta:ug,gta:iv,gta:eflc
Server Name
The name of the server, which appears in the server browser.
- Environment:
SERVERNAME- Default:
Pterodactyl Server- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|max:60
serverbrowser
Whether to show the server in the server browser, set to true or false
- Environment:
SERVERBROWSER- Default:
true- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|in:true,false
Server Version
The version of GATC to install such as 1.2.10, enter latest for the latest version.
- Environment:
DL_VERSION- Default:
latest- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|max:20
Installation Script
Container:
ghcr.io/ptero-eggs/installers:debianEntrypoint:
bash#!/bin/bash
cd /mnt/server
if [ "${DL_VERSION}" == "latest" ]; then
DOWNLOAD_LINK=https://gtaconnected.com/downloads/server/latest/linux
else
DOWNLOAD_LINK=https://gtaconnected.com/downloads/GTAC-Server-Linux-${DL_VERSION}.tar.gz
fi
if [ ! -z "${DOWNLOAD_LINK}" ]; then
if curl --output /dev/null --silent --head --fail --location ${DOWNLOAD_LINK}; then
echo -e "Chosen server version is valid."
else
echo -e "Chosen server version is invalid, tried $DOWNLOAD_LINK. Exiting installation"
exit 2
fi
else
echo -e "no download link, stopping installation"
exit 3
fi
echo -e "Downloading ${DL_VERSION} version of the server"
curl -sSL ${DOWNLOAD_LINK} -o GTAC.tar.gz
echo "Extracting files"
tar -xf GTAC.tar.gz
chmod +x Server
rm GTAC.tar.gz
echo "Install complete"