20 lines
580 B
Lua
20 lines
580 B
Lua
return {
|
|
timeScale = 4000, -- How many milliseconds per minute in GTA time (2000ms is normal for a 48 minute day)
|
|
|
|
useNightScale = false, -- If true, the server will use timeScaleNight to alter the time during night
|
|
timeScaleNight = 8000, -- How many milliseconds per minute in GTA time DURING NIGHT
|
|
|
|
nightTime = {
|
|
beginning = 22,
|
|
ending = 6
|
|
},
|
|
|
|
useRealTime = false, -- If true, the server will override all other configs and use the servers real time.
|
|
|
|
startUpTime = {
|
|
hour = 12,
|
|
minute = 0
|
|
}
|
|
}
|
|
|