-
Notifications
You must be signed in to change notification settings - Fork 0
/
KCServerConfig.cfg
48 lines (34 loc) · 1.2 KB
/
KCServerConfig.cfg
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
39
40
41
42
43
44
45
46
47
48
# should save map to file on start?
save_map = false
# load map with this name
# if map_name is empty, will generate new map and generate random name
# if map_name is not empty, but there is no map with the name defined here, will generate new map and give it this name
# if map_name is correct, will load this existing map, and will egnore parameters below here
map_name = assassass
# map save time
# how many minutes to wait between map saves
# -1 will disable autosave
map_save_time = -1
# stuff below is unused when you are loading pre existing map -------------------------
# chunk params
# recommended 14,14,14 , can be any size tho
chunk_width = 14
chunk_depth = 14
chunk_height = 14
# map params
# default: 32|32|8 but other are possible
# examples: 16|16|4, 64|64|16, etc... good luck with loading maps bigger than 32|32|8 lol
world_width = 16
world_depth = 16
world_height = 4
sky_color_R = 95
sky_color_G = 153
sky_color_B = 186
# map generator params
# you can touch it if you know what you are doing, variable names dont really explain themselves
initial_plane = 0.0017
initial_plane_max_height = 0.235
initial_plane_add_max = 0.16
hills_spread = 0.048
tree_frequency = 0.06
grass_frequency = 0.08