-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.lua
More file actions
38 lines (29 loc) · 2.67 KB
/
config.lua
File metadata and controls
38 lines (29 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Config = {}
-- Language Setting
Config.Locale = "it" -- Set here your language.
-- Time Settings
Config.TimeSync = true -- I do not recommend to put this false
Config.Hour = 8 -- ( This number represents the game time in hours ) It will be useful only for the first time
Config.Minute = 0 -- ( Same but with minutes )
Config.TimerToSyncTime = 30 -- This number represents the timer for every time the script has to sync the time.
Config.RealTime = false -- Set it to true if you want the Real-Life time in game
-- Weather Settings
-- IF REALTIME IS TRUE, LET "WEATHERSYNC" TRUE AND DON'T EDIT ANYTHING!
Config.WeatherSync = true -- I do not recommend to put this false
Config.WeatherType = "Winter" -- (OR Summer - Autumn - Spring). You have to write here one of the Seasons you can find below. You can customize your own season as you wish.
Config.TimerToSyncWeather = 600 -- If you wanna test your personal list of Weather put this number around 30 so you can test it and see changes in game.
Config.WorldSeason = {"Summer", "Winter", "Autumn", "Spring"} -- DO NOT EDIT THIS! It will automatically set your season for the weather you desire!
-- !!DO NOT EDIT SEASON'S NAME!!
Config.Seasons = {
['Summer'] = { "Summer_Overcast_Heavy_01","Clear","Announce","Astronomy","Default_PHY","FIG_07_Storm","ForbiddenForest_01","HighAltitudeOnly","Intro_01","LightClouds_01",
"LightRain_01","Misty_01","MistyOvercast_01","MKT_Nov11","Overcast_01","Overcast_Heavy_01","Overcast_Windy_01","Rainy","Sanctuary_Bog","Sanctuary_Coastal","Sanctuary_Forest",
"Sanctuary_Grasslands","Stormy_01","StormyLarge_01","TestStormShort","TestWind"},
['Winter'] = {"Clear", "Overcast_Heavy_Winter_01", "Winter_Misty_01", "Winter_Overcast_01", "Winter_Overcast_Windy_01", "Snow_01", "Snow_Const", "SnowLight_01", "SnowShort"},
['Autumn'] = {"Clear","Announce","Astronomy","Default_PHY","FIG_07_Storm","ForbiddenForest_01","HighAltitudeOnly","Intro_01","LightClouds_01","LightRain_01","Misty_01",
"MistyOvercast_01","MKT_Nov11","Overcast_01","Overcast_Heavy_01","Overcast_Windy_01","Rainy","Sanctuary_Bog","Sanctuary_Coastal","Sanctuary_Forest","Sanctuary_Grasslands",
"Stormy_01","StormyLarge_01","TestStormShort","TestWind",},
['Spring'] = {"Clear","Announce","Astronomy","Default_PHY","FIG_07_Storm","ForbiddenForest_01","HighAltitudeOnly","Intro_01","LightClouds_01","LightRain_01","Misty_01",
"MistyOvercast_01","MKT_Nov11","Overcast_01","Overcast_Heavy_01","Overcast_Windy_01","Rainy","Sanctuary_Bog","Sanctuary_Coastal","Sanctuary_Forest","Sanctuary_Grasslands",
"Stormy_01","StormyLarge_01","TestStormShort","TestWind"}
}
Config.RLWeather = {2, 2, 4, 4, 4, 1, 1, 1, 3, 3, 3, 2} -- !! DO NOT EDIT !!