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