forked from Simnation/Main
ed
This commit is contained in:
parent
7592bef869
commit
dad50e73dd
5 changed files with 443 additions and 0 deletions
40
resources/[carscripts]/nordi_antidespawn/config.lua
Normal file
40
resources/[carscripts]/nordi_antidespawn/config.lua
Normal file
|
@ -0,0 +1,40 @@
|
|||
Config = {}
|
||||
|
||||
-- Speicherintervall in Millisekunden (5000 = 5 Sekunden)
|
||||
Config.SaveInterval = 5000
|
||||
|
||||
-- Maximale Distanz zum Fahrzeug bevor es als "verlassen" gilt
|
||||
Config.MaxDistance = 100.0
|
||||
|
||||
-- Debug Modus
|
||||
Config.Debug = false
|
||||
|
||||
-- Fahrzeugklassen die gespeichert werden sollen
|
||||
Config.AllowedVehicleClasses = {
|
||||
0, -- Compacts
|
||||
1, -- Sedans
|
||||
2, -- SUVs
|
||||
3, -- Coupes
|
||||
4, -- Muscle
|
||||
5, -- Sports Classics
|
||||
6, -- Sports
|
||||
7, -- Super
|
||||
8, -- Motorcycles
|
||||
9, -- Off-road
|
||||
10, -- Industrial
|
||||
11, -- Utility
|
||||
12, -- Vans
|
||||
13, -- Cycles
|
||||
14, -- Boats
|
||||
15, -- Helicopters
|
||||
16, -- Planes
|
||||
17, -- Service
|
||||
18, -- Emergency
|
||||
19, -- Military
|
||||
20, -- Commercial
|
||||
21, -- Trains
|
||||
22, -- Open Wheel
|
||||
}
|
||||
|
||||
-- Mindestdistanz zu Garagen um Fahrzeuge zu tracken
|
||||
Config.MinGarageDistance = 50.0
|
Loading…
Add table
Add a link
Reference in a new issue