R5Reloaded - Apex Legends Modding SDK
R5Reloaded requires 1 port.
Port | Default | Notes |
---|---|---|
Game | 37015 |
Name | Tag |
---|---|
ghcr.io/ptero-eggs/yolks:wine_latest | ghcr.io/ptero-eggs/yolks:wine_latest |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
Name | Name of the server | SERVER_NAME | A Pterodactyl Server | Yes | Yes |
Playlist | Playlist to load | PLAYLIST | fs_dm | Yes | Yes |
Download URL | URL to download R5Reloaded server build from | DL_URL | https://cdn.r5r.org/dedicated_builds/server_v2.5_r5_745024d1.7z | No | No |
Args | Additional arguments to append to the startup command | ARGS | Yes | Yes | |
Wine Debug | WINEDEBUG | -all | No | No |
# Update package cache and install 7z
apt update
apt install p7zip-full -y
# Change to server directory
cd /mnt/server || exit 1
# Download server file
echo "Downloading: ${DL_URL}"
wget "${DL_URL}" -O server_download.7z
# Extract
echo "Extracting server files"
7z x server_download.7z
# Cleanup
echo "Cleaning up"
rm server_download.7z