πŸ“₯Market Stall

Script developed for the server REVEALED | FR | Free Access | Serious RP

⚑ Getting Started

Read the README file for complete setup instructions!


βž• Creating a Market Stall

You can create a market stall using any of these methods:

  1. With an Inventory Item

    • Use the item "marketstall" or any item set in Config.ItemMarketStall.

  2. Client-side Event

    TriggerEvent("bt_stall:startPlaceObject")
  3. Server-side Event

    TriggerClientEvent("bt_stall:startPlaceObject", source)
  4. Via Inventory Integration (Example with VORP):

    local VORPInv = exports.vorp_inventory:vorp_inventoryApi()
    VORPInv.RegisterUsableItem("market_stall", function(data)
        TriggerClientEvent("bt_stall:startPlaceObject", data.source)
        VORPInv.CloseInv(data.source)
    end)

βš™οΈ Configuration Example (config.lua)


πŸ“Œ Notes

  • Flexible creation: You can trigger stall placement from inventory, client event, or server event.

  • Fully configurable: Jobs, items, and admin permissions are easily managed in config.lua.

  • Anti-spam: Minimum action interval prevents abuse.

  • Multilingual UI: Easily switch interface language.

  • Discord logs: Optional webhook for staff/moderation tracking.

Last updated