The configuration file allows you to set up various aspects of the Black Market, such as the dealer's details, framework, items available for purchase, languages, and blip settings.
Config File
Config = {}
Config.Dealer = {
marker = "[E] Black Shop",
vehicle = "slamvan2",
npc = 0xF0EC56E2,
DrivingStyle = 262144, -- http://gtaforums.com/topic/822314-guide-driving-styles/
UseItem = false, -- or item name
Police = 0, -- Number of active police
}
Framework Setup
This section sets the framework your server is using (QBCore, ESX, OLDQBCore, or NewESX) and fetches the shared object for that framework.
Config.Framework = "QBCore" -- QBCore or ESX or OLDQBCore or NewESX
function GetFramework()
local Get = nil
if Config.Framework == "ESX" then
while Get == nil do
TriggerEvent('esx:getSharedObject', function(Set) Get = Set end)
Citizen.Wait(0)
end
end
if Config.Framework == "NewESX" then
Get = exports['es_extended']:getSharedObject()
end
if Config.Framework == "QBCore" then
Get = exports["qb-core"]:GetCoreObject()
end
if Config.Framework == "OldQBCore" then
while Get == nil do
TriggerEvent('QBCore:GetObject', function(Set) Get = Set end)
Citizen.Wait(200)
end
end
return Get
end
Black Market Items
This section defines the items available for purchase in the Black Market. You can customize the title, name, price, and image for each item.
Use the following event to start the Black Market interaction.
-- BLACK MARKET START TRIGGER EVENT
-- TriggerClientEvent('blackmarket:start') or TriggerEvent(...)
Summary
This guide provides the essential configurations and functions needed to set up your FiveM Black Market script. Customize each section to fit your server's requirements and integrate these configurations into your server scripts for a fully functional Black Market system.