diff --git a/server-data/resources/[esx_addons]/esx_vehicleshop/config.lua b/server-data/resources/[esx_addons]/esx_vehicleshop/config.lua index 412135f7c..1998885b9 100644 --- a/server-data/resources/[esx_addons]/esx_vehicleshop/config.lua +++ b/server-data/resources/[esx_addons]/esx_vehicleshop/config.lua @@ -1,17 +1,17 @@ -Config = {} -Config.DrawDistance = 10 -Config.MarkerColor = {r = 120, g = 120, b = 240} -Config.EnablePlayerManagement = true -- enables the actual car dealer job. You'll need esx_addonaccount, esx_billing and esx_society -Config.ResellPercentage = 50 +Config = {} +Config.DrawDistance = 10 +Config.MarkerColor = { r = 120, g = 120, b = 240 } +Config.EnablePlayerManagement = true -- enables the actual car dealer job. You'll need esx_addonaccount, esx_billing and esx_society +Config.ResellPercentage = 50 -Config.Locale = 'en' +Config.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.PlateLetters = 3 +Config.PlateNumbers = 3 Config.PlateUseSpace = true Config.OxInventory = ESX.GetConfig().OxInventory @@ -20,47 +20,46 @@ Config.Blip = { show = true, Sprite = 326, Display = 4, - Scale = 0.8 + 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 + 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}, + Pos = vector3(-47.5, -1097.2, 25.4), + Size = { x = 1.5, y = 1.5, z = 1.0 }, Heading = -20.0, - Type = -1 + Type = -1, }, ShopOutside = { - Pos = vector3(-28.6, -1085.6, 25.5), - Size = {x = 1.5, y = 1.5, z = 1.0}, + Pos = vector3(-28.6, -1085.6, 25.5), + Size = { x = 1.5, y = 1.5, z = 1.0 }, Heading = 330.0, - Type = -1 + Type = -1, }, BossActions = { - Pos = vector3(-32.0, -1114.2, 25.4), - Size = {x = 1.5, y = 1.5, z = 1.0}, - Type = -1 + 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) + 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 - } - + Pos = vector3(-44.6, -1080.7, 25.6), + Size = { x = 3.0, y = 3.0, z = 1.0 }, + Type = 1, + }, }