Elite Store
DiscordTebex
  • Elite Store Documentation
  • Scripts
    • Elite BlackMarket
      • Configuration
      • Server Configuration
      • Custom Image
      • API
    • Elite Prostitute Manager
      • Configuration
      • Server Configuration
      • Personalization
      • Custom Framework
    • Elite HUD - V1
      • Configuration
      • API
    • Elite HUD - V2
      • Configuration
Powered by GitBook
On this page
  1. Scripts
  2. Elite BlackMarket

Configuration

This page contains the basic configuration settings for the Elite-Blackmarket script.

Here is the basic configuration of Elite-BlackMarket

Config = {}

Config.Debug = false

Config.FrameWork = "esx" -- /esx/qbcore
Config.Target = "ox_target" -- ox_target/qb_target
Config.Locales = "en" -- en/fr/lt/ar/it/de
Config.Symbol = "$" -- $/€ etc...

Config.BlackMarket = {
    {
        ped = { model = "a_m_m_hillbilly_01", coords = vector3(766.5734, -1317.5100, 26.2753), heading = 272.7893 },
        blip = { active = true, coords = vector3(766.5734, -1317.5100, 26.2753), title = "Black Market", color = 1, id = 110, scale = 0.8 },
        target = {
            icon = "fa fa-location-dot",
            text = "Open BlackMarket"
        },
        buy = true,
        sell = true,
        account = "black_money",
        items = {
            buy = {
                { name = "Phone", price = 850, itemName = "phone", img = "nui://ox_inventory/web/images/phone.png" }, 
                { name = "Laptop", price = 500, itemName = "laptop", img = "images/laptop.png" },
                { name = "Tablet", price = 500, itemName = "laptop", img = "nui://ox_inventory/web/images/hacking_computer.png" }, 
                { name = "Fake License", price = 120, itemName = "weapon_license", img = "images/weapon_license.png" },
                { name = "Pistol", price = 6000, itemName = "weapon_carbinerifle", img = "nui://ox_inventory/web/images/weapon_pistol.png" }, 
                { name = "Grenade", price = 6000, itemName = "weapon_carbinerifle", img = "nui://ox_inventory/web/images/WEAPON_GRENADE.png" }, 
                { name = "Carbine Rifle", price = 6000, itemName = "weapon_carbinerifle", img = "images/WEAPON_CARBINERIFLE.png" },
                { name = "Compact Rifle", price = 7000, itemName = "weapon_compactrifle", img = "images/WEAPON_COMPACTRIFLE.png" },
            },
            sell = {
                { name = "Phone", price = 150, itemName = "phone", img = "images/phone.png" },
                { name = "Laptop", price = 450, itemName = "laptop", img = "images/laptop.png" }
            }
        }
    },
}
PreviousElite BlackMarketNextServer Configuration

Last updated 4 months ago