Egg Repository

Pterodactyl Community Egg Repository

R5Reloaded

R5Reloaded - Modded Apex Legends server

Read Me

R5Reloaded (Apex Legends Modding SDK)

R5Reloaded - Apex Legends Modding SDK

Server Ports

R5Reloaded requires 1 port.

PortDefaultNotes
Game37015
Yolks
NameTag
ghcr.io/ptero-eggs/yolks:wine_latestghcr.io/ptero-eggs/yolks:wine_latest
Variables and Startup

Startup Command

wine64 r5apex_ds.exe -noconsole -port {{SERVER_PORT}} +launchplaylist "{{PLAYLIST}}" +hostname "{{SERVER_NAME}}" {{ARGS}}

Variables

Name

Name of the server

Environment Variable: SERVER_NAME
Default Value: A Pterodactyl Server
User Viewable:
User Editable:
Playlist

Playlist to load

Environment Variable: PLAYLIST
Default Value: fs_dm
User Viewable:
User Editable:
Download URL

URL to download R5Reloaded server build from

Environment Variable: DL_URL
Default Value: https://cdn.r5r.org/dedicated_builds/server_v2.5_r5_745024d1.7z
User Viewable:
User Editable:
Args

Additional arguments to append to the startup command

Environment Variable: ARGS
Default Value:
User Viewable:
User Editable:
Wine Debug

Environment Variable: WINEDEBUG
Default Value: -all
User Viewable:
User Editable:
Install Script
# 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
Installation Imageghcr.io/ptero-eggs/installers:debianInstallation Entrypointbash