Egg Repository

Pterodactyl Community Egg Repository

Rage.MP

https://rage.mp/ Modified to work with the latest version of RAGE:MP Will automatically install linux bridge. **This server requires 2 ports to be added for the server. the main port and the next (port+1) as ports for the server.

Read Me

Rage-MP

The Rage-MP GTA 5 dedicated server RAGE Multiplayer is an multiplayer modification for Grand Theft Auto V that is alternative to GTA Online.

Server Ports

Warband requires a 2 ports (default 22005, 22006)

Portdefault
Game22005
http22006
Yolks
NameTag
ghcr.io/ptero-eggs/yolks:debianghcr.io/ptero-eggs/yolks:debian
Variables and Startup

Startup Command

./ragemp-server

Variables

Server Name

Server name that will be displayed to the master server. (64 Char max)

Environment Variable: SERVER_NAME
Default Value: RAGE:MP Unofficial server
User Viewable:
User Editable:
Max Players

Maximum number of players your server will hold. (Max 100)

Environment Variable: MAX_PLAYERS
Default Value: 50
User Viewable:
User Editable:
Install Script
#!/bin/bash

mkdir -p /mnt/server/tmp
cd /mnt/server

rm -rf bin/
rm -rf dotnet/
rm ragemp-server

cd /mnt/server/tmp
echo "Downloading rage.mp"
curl -sSL -o linux_x64.tar.gz https://cdn.rage.mp/updater/prerelease/server-files/linux_x64.tar.gz
tar -xzvf linux_x64.tar.gz
rm linux_x64.tar.gz
cd /mnt/server/tmp/ragemp-srv/
mv * /mnt/server

cd /mnt/server
chmod +x ./ragemp-server
rm -rf /mnt/server/tmp

if [ -e conf.json ]; then
    echo "server config file exists"
else
    echo "Downloading default rage.mp config"
    curl https://raw.githubusercontent.com/ptero-eggs/game-eggs/main/gta/ragemp/conf.json >> conf.json
fi

echo "install complete"

exit 0
Installation Imageghcr.io/ptero-eggs/installers:debianInstallation Entrypointbash