BRB Wanted Poster System - Installation Guide
Welcome to the official installation guide for the BRB Wanted Poster System. Follow these steps to quickly set up the system on your RedM server using the VORP Framework.
📦 Step 1: Download and Extract
Download the latest version of the BRB Wanted Poster System.
Extract the contents to your RedM
resourcesfolder.
⚙️ Step 2: Configure the Resource
Open the
config.luafile located inside thebrb-wantedfolder.Adjust the settings to fit your server, including:
PoliceJobs: Set the roles allowed to create posters (e.g.,
police,sheriff).Bounty Limits: Configure minimum and maximum bounty amounts.
Save the changes.
🗄️ Step 3: Database Setup
Ensure you have MySQL installed and running on your server.
Import the provided SQL file using your preferred MySQL management tool with the following command:
CREATE TABLE IF NOT EXISTS `wanted_posters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`creator` varchar(50) DEFAULT NULL,
`criminal_name` varchar(100) DEFAULT NULL,
`crime` varchar(255) DEFAULT NULL,
`bounty` int(11) DEFAULT NULL,
`coords` text DEFAULT NULL,
`rotation` text DEFAULT NULL,
`model` varchar(50) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=98 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;Verify that the following tables are created:
wanted_posters (Stores poster data like name, crime, and bounty)
Confirm your database connection settings in the
server.cfgfile.
🛠️ Step 4: Add to Server.cfg
Navigate to your server's root folder.
Open the
server.cfgfile.Add the following line to start the resource:
start brb-wantedSave and close the file.
🚀 Step 5: Start Your Server
Launch your RedM server.
Verify that
brb-wantedis running using the console or server logs.You’re all set! Use
/createposteras a police officer or sheriff to create your first wanted poster.
🧑💻 Troubleshooting Tips
Resource Not Starting? Ensure you have
oxmysqlinstalled and properly configured.Posters Not Displaying? Check the database tables using a MySQL client.
UI Not Loading? Verify that the files in the
uifolder are accessible and correctly linked.
🎯 Final Words
The BRB Wanted Poster System brings a new level of realism and excitement to your roleplay server. Track criminals, deliver justice, and create immersive scenarios for your players.
If you encounter any issues or need further assistance, feel free to reach out through our support channels.
Enjoy the Wild West with BRB Wanted Poster System!
Last updated