1
0
Fork 0
forked from Simnation/Main
Main/resources/[carscripts]/nordi_rental/config.lua

65 lines
2 KiB
Lua
Raw Normal View History

2025-07-26 00:28:59 +02:00
Config = {}
Config.MaxRentalTime = 24 -- Maximale Mietdauer in Stunden
Config.PenaltyPerHour = 100 -- Strafe pro Stunde Verspätung
2025-07-26 00:56:12 +02:00
Config.UseOkokBanking = false -- true für okokBanking, false für Bargeld
2025-07-26 03:22:23 +02:00
Config.MaxReturnDistance = 20.0 -- Maximale Entfernung zum Rückgabepunkt in Metern
Config.MaxOverdueHours = 24 -- Nach wie vielen Stunden überfällige Fahrzeuge automatisch zurückgegeben werden
2025-07-26 00:28:59 +02:00
Config.RentalLocations = {
{
id = "rental_1",
name = "Downtown Autovermietung",
npc = {
2025-07-26 02:52:49 +02:00
model = "a_m_y_business_03",
2025-07-26 00:48:46 +02:00
coords = vector4(-56.6615, -1096.7587, 26.4223, 189.4913),
2025-07-26 00:28:59 +02:00
},
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 = {
2025-07-26 02:52:49 +02:00
model = "a_m_m_hillbilly_01",
2025-07-26 00:28:59 +02:00
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"
}
}
}
}