Guides/
RedM Server Framework
Guide 03 — Multiplayer Server Resource Setup

RedM Server Scripts & Resource Guide

RedM is CitizenFX's custom multiplayer client for Red Dead Redemption 2. This guide covers how server owners and developers install custom lua scripts, C# resources, VORP/RSG frameworks, and fxmanifest.lua packages.

Official RedM Documentation & Client

Download the RedM launcher client or review official CitizenFX server artifact builds.

Visit RedM Portal

How to Install Server Resources

1

Extract Resource Folder

Download your desired RedM script or mod. Unzip the file and verify that the root folder contains an fxmanifest.lua file.

2

Place in resources Directory

Move the resource folder into your server's resources/ directory (e.g. server-data/resources/[scripts]/resource_name).

3

Ensure in server.cfg

Open your server.cfg file and add ensure resource_name to start the script automatically when the server boots.

RedM Video Guide

RedM RP Server Setup Dedicated Video Tutorial

Watch this step-by-step video tutorial demonstrating RedM server creation, artifact deployment, resource configuration, and server key setup.

Standard Resource Structure & fxmanifest.lua

Every RedM resource requires an fxmanifest.lua file in its root folder declaring game compatibility and script entry points.

-- fxmanifest.lua example
fx_version 'cerulean'
game 'rdr3'

rdr3_warning 'I acknowledge that this is a RedM resource and does not support FiveM'

author 'Mod Author'
description 'Custom RedM Inventory Framework'
version '1.0.0'

client_scripts {
    'client/main.lua',
    'client/utils.lua'
}

server_scripts {
    'server/main.lua'
}

Supported RedM Server Frameworks

VORP Core Framework

The standard open-source roleplay framework for RedM featuring character creation, MySQL database support, inventories, and jobs.

RSG Core Framework

Red-State-Gaming core framework tailored for economy systems, horse customization, stores, and law enforcement mechanics.