67 lines
1.6 KiB
Lua
67 lines
1.6 KiB
Lua
Config = {}
|
|
Config.DrawDistance = 10
|
|
Config.MarkerColor = {r = 120, g = 120, b = 240}
|
|
Config.EnablePlayerManagement = false -- enables the actual car dealer job. You'll need esx_addonaccount, esx_billing and esx_society
|
|
Config.ResellPercentage = 50
|
|
|
|
Config.Locale = GetConvar('esx:locale', 'en')
|
|
|
|
Config.LicenseEnable = false -- require people to own drivers license when buying vehicles? Only applies if EnablePlayerManagement is disabled. Requires esx_license
|
|
|
|
-- looks like this: 'LLL NNN'
|
|
-- The maximum plate length is 8 chars (including spaces & symbols), don't go past it!
|
|
Config.PlateLetters = 3
|
|
Config.PlateNumbers = 3
|
|
Config.PlateUseSpace = true
|
|
|
|
Config.OxInventory = ESX.GetConfig().OxInventory
|
|
|
|
Config.Blip = {
|
|
show = true,
|
|
Sprite = 326,
|
|
Display = 4,
|
|
Scale = 0.8
|
|
}
|
|
|
|
Config.Zones = {
|
|
|
|
ShopEntering = {
|
|
Pos = vector3(-33.7, -1102.0, 25.4),
|
|
Size = {x = 1.5, y = 1.5, z = 1.0},
|
|
Type = 1
|
|
},
|
|
|
|
ShopInside = {
|
|
Pos = vector3(-47.5, -1097.2, 25.4),
|
|
Size = {x = 1.5, y = 1.5, z = 1.0},
|
|
Heading = -20.0,
|
|
Type = -1
|
|
},
|
|
|
|
ShopOutside = {
|
|
Pos = vector3(-28.6, -1085.6, 25.5),
|
|
Size = {x = 1.5, y = 1.5, z = 1.0},
|
|
Heading = 330.0,
|
|
Type = -1
|
|
},
|
|
|
|
BossActions = {
|
|
Pos = vector3(-32.0, -1114.2, 25.4),
|
|
Size = {x = 1.5, y = 1.5, z = 1.0},
|
|
Type = -1
|
|
},
|
|
|
|
GiveBackVehicle = {
|
|
Pos = vector3(-18.2, -1078.5, 25.6),
|
|
Size = {x = 3.0, y = 3.0, z = 1.0},
|
|
Type = (Config.EnablePlayerManagement and 1 or -1)
|
|
},
|
|
|
|
ResellVehicle = {
|
|
Pos = vector3(-44.6, -1080.7, 25.6),
|
|
Size = {x = 3.0, y = 3.0, z = 1.0},
|
|
Type = 1
|
|
}
|
|
|
|
}
|