cl_config.lua
Füge mehrere Shop hinzu.
position = vector3(-57.4240, -1096.8384, 26.4224), -- Position des Shops
vehicleShowCasePosition = vector3(-45.5130, -1097.3007, 26.4224), -- Position des Showcases
testDrivePosition = vector3(-874.5597, -3215.5432, 13.9444), -- Position der Teststrecke
marker = {
type = 2, -- https://docs.fivem.net/docs/game-references/markers/
scale = {
x = 1.0,
y = 1.0,
z = 1.0
},
color = {
r = 255,
g = 255,
b = 255,
a = 100
},
bobUpAndDown = true,
faceCamera = false,
rotate = true
},
blip = {
sprite = 669,
color = 18,
scale = 0.7,
name = "Autohaus"
},
Erstelle eigene Kategorien.
Categorys = {
{
name = "Sports",
description = "Beschreibung für Sports"
},
{
name = "Import",
description = "Beschreibung für Import"
}
},
Füge zu den Kategorien passende Autos hinzu.
Vehicles = {
["Sports"] = { -- Kategorie-Name
{
name = "t20", -- Autoname (spawnname)
label = "BMW M4 1", -- Autolabel
price = 2000000 -- Preis
},
{
name = "t20", -- Autoname (spawnname)
label = "BMW M4 1", -- Autolabel
price = 2000000 -- Preis
},
},
["Import"] = { -- Kategorie-Name
{
name = "t20", -- Autoname (spawnname)
label = "BMW M4 1", -- Autolabel
price = 2000000 -- Preis
},
{
name = "t20", -- Autoname (spawnname)
label = "BMW M4 1", -- Autolabel
price = 2000000 -- Preis
},
}
}
Zuletzt aktualisiert