forked from Simnation/Main
41 lines
2.6 KiB
Lua
41 lines
2.6 KiB
Lua
![]() |
Config.dealerships = Config.dealerships or {}
|
||
|
|
||
|
Config.dealerships.fmpdm = { -- Dealership ID, NEEDS TO BE THE SAME AS THE JOB!!!
|
||
|
enabled = true, -- true or false to enable or disable the dealership
|
||
|
label = 'Premium Deluxe Motorsports', -- Dealership label
|
||
|
logo = 'https://i.ibb.co/nkBN3bs/logo.png', -- Dealership logo that'll show on UI
|
||
|
job = false, -- Dealership job or false to not player owned dealerships, NEEDS TO BE THE SAME AS THE ID!!!
|
||
|
lockCatalogueJob = false, -- can be false for everyone to open the catalogue or a job if you want to lock it to some job
|
||
|
currency = 'bank', -- bank, cash or money to ESX (Also to QBCore you can choose other currency like crypto and etc)
|
||
|
testDriveRoutingBucket = true, -- Set this to false if you don't want the test drive to be inside of a Routing Bucket
|
||
|
allowChangeVehicle = true, -- If true players will be able to change the vehicles on the catalogue witout job
|
||
|
testDriveTime = 50, -- Test drive time in seconds
|
||
|
testDriveSpawn = vec4(-805.46, -237.29, 37.12, 206.87), -- Test drive spawn coords
|
||
|
buySpawn = vec4(-796.82, -219.97, 37.26, 120.47), -- Vehicle buy spawn coords
|
||
|
blip = { enabled = true, coords = vec3(-795.15, -238.44, 37.08), sprite = 523, color = 3, scale = 0.6, display = 4 }, -- Dealership map blip
|
||
|
catalogues = { -- The catalogues to the players see the vehicle and emplooyes change the vehicle on showrrom
|
||
|
{ coords = vec3(-792.55, -227.65, 37.4), radius = 0.4 },
|
||
|
{ coords = vec3(-788.9, -225.45, 37.4), radius = 0.4 },
|
||
|
{ coords = vec3(-781.35, -238.1, 37.35), radius = 0.4 },
|
||
|
{ coords = vec3(-785.85, -240.35, 37.35), radius = 0.4 },
|
||
|
},
|
||
|
categories = { -- The categories that will show on the catalogue and dashboard (need to add the shop with the job name to the vehicles.lua too on the shops field otherwise it'll not show the vehicles!!)
|
||
|
{ label = 'Compacts', id = 'compacts' },
|
||
|
{ label = 'Sedans', id = 'sedans' },
|
||
|
{ label = 'SUVs', id = 'suvs' },
|
||
|
{ label = 'Coupes', id = 'coupes' },
|
||
|
{ label = 'Muscle', id = 'muscle' },
|
||
|
{ label = 'Sports Classics', id = 'classics' },
|
||
|
{ label = 'Sports', id = 'sports' },
|
||
|
{ label = 'Super', id = 'super' },
|
||
|
{ label = 'Motorcycles', id = 'motorcycles' },
|
||
|
{ label = 'OffRoad', id = 'offroad' },
|
||
|
{ label = 'Industrial', id = 'industrial' },
|
||
|
{ label = 'Utility', id = 'utility' },
|
||
|
{ label = 'Vans', id = 'vans' },
|
||
|
{ label = 'Cycles', id = 'cycles' },
|
||
|
{ label = 'Service', id = 'service' },
|
||
|
{ label = 'Commercial', id = 'commercial' },
|
||
|
{ label = 'Open Wheel', id = 'openwheel' },
|
||
|
}
|
||
|
}
|