prp-shops

A dynamic, configuration-first shop system powering your server's economy.

Screenshot: 24/7 Interface

Features

Included Presets

The script comes pre-configured with the following chains:

Configuration

Edit `config.lua` for core settings:

Config.Framework = "qbox"
Config.Inventory = "ox_inventory"
Config.PayMethod = "cash"
Config.InteractionDistance = 5.0

Adding New Shops

Simply open `shops.lua` and add a new entry to the `Shops` table:

Shops["My New Shop"] = {
    pedModel = "mp_m_shopkeep_01",
    blipname = "Joe's Mart",
    blipsprite = 52,
    locations = { vector4(...) },
    items = {
        bread = { category = "food", display = "Bread", price = 5, description = "Freshly baked." }
    }
}
Pro Tip: Use with prp-storerobbery to turn your peaceful shops into high-stakes heist targets.