RanchWork Scripts
  • Home
  • General Questions
    • Escrow System
    • Failed to verify protected resource
    • You lack the required entitlement
  • If nothing fixed your problems
  • Need Help?
  • Scripts
    • BRB Trader – Advanced Market System
    • BRB Advanced Banking System
    • BRB Wanted Poster System - Installation Guide
Powered by GitBook
On this page
  • πŸ“¦ Step 1: Download and Extract
  • βš™οΈ Step 2: Configure the Resource
  • πŸ—„οΈ Step 3: Database Setup
  • πŸ› οΈ Step 4: Add to Server.cfg
  • πŸš€ Step 5: Start Your Server
  • πŸ§‘β€πŸ’» Troubleshooting Tips
  • 🎯 Final Words
  1. Scripts

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

  1. Download the latest version of the BRB Wanted Poster System.

  2. Extract the contents to your RedM resources folder.


βš™οΈ Step 2: Configure the Resource

  1. Open the config.lua file located inside the brb-wanted folder.

  2. 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.

  3. Save the changes.


πŸ—„οΈ Step 3: Database Setup

  1. Ensure you have MySQL installed and running on your server.

  2. 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;
  1. Verify that the following tables are created:

    • wanted_posters (Stores poster data like name, crime, and bounty)

  2. Confirm your database connection settings in the server.cfg file.


πŸ› οΈ Step 4: Add to Server.cfg

  1. Navigate to your server's root folder.

  2. Open the server.cfg file.

  3. Add the following line to start the resource:

start brb-wanted
  1. Save and close the file.


πŸš€ Step 5: Start Your Server

  1. Launch your RedM server.

  2. Verify that brb-wanted is running using the console or server logs.

  3. You’re all set! Use /createposter as a police officer or sheriff to create your first wanted poster.


πŸ§‘β€πŸ’» Troubleshooting Tips

  • Resource Not Starting? Ensure you have oxmysql installed and properly configured.

  • Posters Not Displaying? Check the database tables using a MySQL client.

  • UI Not Loading? Verify that the files in the ui folder 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!

PreviousBRB Advanced Banking System

Last updated 2 months ago