This commit is contained in:
Nordi98 2025-07-26 00:28:59 +02:00
parent 305602602e
commit 99aed29a52
4 changed files with 415 additions and 0 deletions

View file

@ -0,0 +1,62 @@
Config = {}

Config.MaxRentalTime = 24 -- Maximale Mietdauer in Stunden
Config.PenaltyPerHour = 100 -- Strafe pro Stunde Verspätung
Config.UseOkokBanking = true -- true für okokBanking, false für Bargeld

Config.RentalLocations = {
{
id = "rental_1",
name = "Downtown Autovermietung",
npc = {
model = "a_m_m_business_01",
coords = vector4(-56.79, -1096.58, 26.42, 25.0),
},
spawnPoint = vector4(-66.79, -1096.58, 26.42, 25.0),
returnPoint = vector4(-66.79, -1096.58, 26.42, 25.0),
vehicles = {
{
model = "blista",
label = "Blista",
price = 50, -- Preis pro Stunde
category = "compacts"
},
{
model = "sultan",
label = "Sultan",
price = 75,
category = "sedans"
},
{
model = "baller",
label = "Baller",
price = 100,
category = "suvs"
}
}
},
{
id = "rental_2",
name = "Sandy Shores Autovermietung",
npc = {
model = "a_m_m_business_01",
coords = vector4(1737.59, 3710.2, 34.14, 25.0),
},
spawnPoint = vector4(1727.59, 3710.2, 34.14, 25.0),
returnPoint = vector4(1727.59, 3710.2, 34.14, 25.0),
vehicles = {
{
model = "rebel",
label = "Rebel",
price = 80,
category = "offroad"
},
{
model = "sandking",
label = "Sandking",
price = 120,
category = "offroad"
}
}
}
}