]> git.lizzy.rs Git - dragonfireclient.git/blob - minetest.conf.example
Remove misleading documentation about IPv6 server announcing
[dragonfireclient.git] / minetest.conf.example
1 #    This file contains a list of all available settings and their default value for minetest.conf
2
3 #    By default, all the settings are commented and not functional.
4 #    Uncomment settings by removing the preceding #.
5
6 #    minetest.conf is read by default from:
7 #    ../minetest.conf
8 #    ../../minetest.conf
9 #    Any other path can be chosen by passing the path as a parameter
10 #    to the program, eg. "minetest.exe --config ../minetest.conf.example".
11
12 #    Further documentation:
13 #    http://wiki.minetest.net/
14
15 #
16 # Controls
17 #
18
19 #    If enabled, you can place blocks at the position (feet + eye level) where you stand.
20 #    This is helpful when working with nodeboxes in small areas.
21 #    type: bool
22 # enable_build_where_you_stand = false
23
24 #    Player is able to fly without being affected by gravity.
25 #    This requires the "fly" privilege on the server.
26 #    type: bool
27 # free_move = false
28
29 #    Fast movement (via the "special" key).
30 #    This requires the "fast" privilege on the server.
31 #    type: bool
32 # fast_move = false
33
34 #    If enabled together with fly mode, player is able to fly through solid nodes.
35 #    This requires the "noclip" privilege on the server.
36 #    type: bool
37 # noclip = false
38
39 #    Smooths camera when looking around. Also called look or mouse smoothing.
40 #    Useful for recording videos.
41 #    type: bool
42 # cinematic = false
43
44 #    Smooths rotation of camera. 0 to disable.
45 #    type: float min: 0 max: 0.99
46 # camera_smoothing = 0.0
47
48 #    Smooths rotation of camera in cinematic mode. 0 to disable.
49 #    type: float min: 0 max: 0.99
50 # cinematic_camera_smoothing = 0.7
51
52 #    Invert vertical mouse movement.
53 #    type: bool
54 # invert_mouse = false
55
56 #    Mouse sensitivity multiplier.
57 #    type: float
58 # mouse_sensitivity = 0.2
59
60 #    If enabled, "special" key instead of "sneak" key is used for climbing down and descending.
61 #    type: bool
62 # aux1_descends = false
63
64 #    Double-tapping the jump key toggles fly mode.
65 #    type: bool
66 # doubletap_jump = false
67
68 #    If disabled, "special" key is used to fly fast if both fly and fast mode are enabled.
69 #    type: bool
70 # always_fly_fast = true
71
72 #    The time in seconds it takes between repeated right clicks when holding the right mouse button.
73 #    type: float
74 # repeat_rightclick_time = 0.25
75
76 #    Prevent digging and placing from repeating when holding the mouse buttons.
77 #    Enable this when you dig or place too often by accident.
78 #    type: bool
79 # safe_dig_and_place = false
80
81 #    Enable random user input (only used for testing).
82 #    type: bool
83 # random_input = false
84
85 #    Continuous forward movement, toggled by autoforward key.
86 #    type: bool
87 # continuous_forward = false
88
89 #    The length in pixels it takes for touch screen interaction to start.
90 #    type: int
91 # touchscreen_threshold = 20
92
93 #    (Android) Fixes the position of virtual joystick.
94 #    If disabled, virtual joystick will center to first-touch's position.
95 #    type: int
96 # fixed_virtual_joystick = false
97
98 #    Enable Joysticks
99 #    type: bool
100 # enable_joysticks = false
101
102 #    The identifier of the joystick to use
103 #    type: int
104 # joystick_id = 0
105
106 #    The type of joystick
107 #    type: enum values: auto, generic, xbox
108 # joystick_type = auto
109
110 #    The time in seconds it takes between repeated events
111 #    when holding down a joystick button combination.
112 #    type: float
113 # repeat_joystick_button_time = 0.17
114
115 #    The sensitivity of the joystick axes for moving the
116 #    ingame view frustum around.
117 #    type: float
118 # joystick_frustum_sensitivity = 170
119
120 #    Key for moving the player forward.
121 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
122 #    type: key
123 # keymap_forward = KEY_KEY_W
124
125 #    Key for moving the player backward.
126 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
127 #    type: key
128 # keymap_backward = KEY_KEY_S
129
130 #    Key for moving the player left.
131 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
132 #    type: key
133 # keymap_left = KEY_KEY_A
134
135 #    Key for moving the player right.
136 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
137 #    type: key
138 # keymap_right = KEY_KEY_D
139
140 #    Key for jumping.
141 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
142 #    type: key
143 # keymap_jump = KEY_SPACE
144
145 #    Key for sneaking.
146 #    Also used for climbing down and descending in water if aux1_descends is disabled.
147 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
148 #    type: key
149 # keymap_sneak = KEY_LSHIFT
150
151 #    Key for opening the inventory.
152 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
153 #    type: key
154 # keymap_inventory = KEY_KEY_I
155
156 #    Key for moving fast in fast mode.
157 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
158 #    type: key
159 # keymap_special1 = KEY_KEY_E
160
161 #    Key for opening the chat window.
162 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
163 #    type: key
164 # keymap_chat = KEY_KEY_T
165
166 #    Key for opening the chat window to type commands.
167 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
168 #    type: key
169 # keymap_cmd = /
170
171 #    Key for opening the chat window to type local commands.
172 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
173 #    type: key
174 # keymap_cmd_local = .
175
176 #    Key for toggling unlimited view range.
177 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
178 #    type: key
179 # keymap_rangeselect = KEY_KEY_R
180
181 #    Key for toggling flying.
182 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
183 #    type: key
184 # keymap_freemove = KEY_KEY_K
185
186 #    Key for toggling fast mode.
187 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
188 #    type: key
189 # keymap_fastmove = KEY_KEY_J
190
191 #    Key for toggling noclip mode.
192 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
193 #    type: key
194 # keymap_noclip = KEY_KEY_H
195
196 #    Key for selecting the next item in the hotbar.
197 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
198 #    type: key
199 # keymap_hotbar_next = KEY_KEY_N
200
201 #    Key for selecting the previous item in the hotbar.
202 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
203 #    type: key
204 # keymap_hotbar_previous = KEY_KEY_B
205
206 #    Key for muting the game.
207 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
208 #    type: key
209 # keymap_mute = KEY_KEY_M
210
211 #    Key for increasing the volume.
212 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
213 #    type: key
214 # keymap_increase_volume =
215
216 #    Key for decreasing the volume.
217 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
218 #    type: key
219 # keymap_decrease_volume =
220
221 #    Key for toggling autoforward.
222 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
223 #    type: key
224 # keymap_autoforward =
225
226 #    Key for toggling cinematic mode.
227 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
228 #    type: key
229 # keymap_cinematic =
230
231 #    Key for toggling display of minimap.
232 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
233 #    type: key
234 # keymap_minimap = KEY_F9
235
236 #    Key for taking screenshots.
237 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
238 #    type: key
239 # keymap_screenshot = KEY_F12
240
241 #    Key for dropping the currently selected item.
242 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
243 #    type: key
244 # keymap_drop = KEY_KEY_Q
245
246 #    Key to use view zoom when possible.
247 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
248 #    type: key
249 # keymap_zoom = KEY_KEY_Z
250
251 #    Key for selecting the first hotbar slot.
252 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
253 #    type: key
254 # keymap_slot1 = KEY_KEY_1
255
256 #    Key for selecting the second hotbar slot.
257 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
258 #    type: key
259 # keymap_slot2 = KEY_KEY_2
260
261 #    Key for selecting the third hotbar slot.
262 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
263 #    type: key
264 # keymap_slot3 = KEY_KEY_3
265
266 #    Key for selecting the fourth hotbar slot.
267 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
268 #    type: key
269 # keymap_slot4 = KEY_KEY_4
270
271 #    Key for selecting the fifth hotbar slot.
272 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
273 #    type: key
274 # keymap_slot5 = KEY_KEY_5
275
276 #    Key for selecting the sixth hotbar slot.
277 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
278 #    type: key
279 # keymap_slot6 = KEY_KEY_6
280
281 #    Key for selecting the seventh hotbar slot.
282 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
283 #    type: key
284 # keymap_slot7 = KEY_KEY_7
285
286 #    Key for selecting the eighth hotbar slot.
287 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
288 #    type: key
289 # keymap_slot8 = KEY_KEY_8
290
291 #    Key for selecting the ninth hotbar slot.
292 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
293 #    type: key
294 # keymap_slot9 = KEY_KEY_9
295
296 #    Key for selecting the tenth hotbar slot.
297 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
298 #    type: key
299 # keymap_slot10 = KEY_KEY_0
300
301 #    Key for selecting the 11th hotbar slot.
302 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
303 #    type: key
304 # keymap_slot11 =
305
306 #    Key for selecting the 12th hotbar slot.
307 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
308 #    type: key
309 # keymap_slot12 =
310
311 #    Key for selecting the 13th hotbar slot.
312 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
313 #    type: key
314 # keymap_slot13 =
315
316 #    Key for selecting the 14th hotbar slot.
317 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
318 #    type: key
319 # keymap_slot14 =
320
321 #    Key for selecting the 15th hotbar slot.
322 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
323 #    type: key
324 # keymap_slot15 =
325
326 #    Key for selecting the 16th hotbar slot.
327 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
328 #    type: key
329 # keymap_slot16 =
330
331 #    Key for selecting the 17th hotbar slot.
332 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
333 #    type: key
334 # keymap_slot17 =
335
336 #    Key for selecting the 18th hotbar slot.
337 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
338 #    type: key
339 # keymap_slot18 =
340
341 #    Key for selecting the 19th hotbar slot.
342 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
343 #    type: key
344 # keymap_slot19 =
345
346 #    Key for selecting the 20th hotbar slot.
347 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
348 #    type: key
349 # keymap_slot20 =
350
351 #    Key for selecting the 21th hotbar slot.
352 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
353 #    type: key
354 # keymap_slot21 =
355
356 #    Key for selecting the 22th hotbar slot.
357 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
358 #    type: key
359 # keymap_slot22 =
360
361 #    Key for selecting the 23th hotbar slot.
362 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
363 #    type: key
364 # keymap_slot23 =
365
366 #    Key for toggling the display of the HUD.
367 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
368 #    type: key
369 # keymap_toggle_hud = KEY_F1
370
371 #    Key for toggling the display of the chat.
372 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
373 #    type: key
374 # keymap_toggle_chat = KEY_F2
375
376 #    Key for toggling the display of the large chat console.
377 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
378 #    type: key
379 # keymap_console = KEY_F10
380
381 #    Key for toggling the display of the fog.
382 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
383 #    type: key
384 # keymap_toggle_force_fog_off = KEY_F3
385
386 #    Key for toggling the camera update. Only used for development
387 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
388 #    type: key
389 # keymap_toggle_update_camera =
390
391 #    Key for toggling the display of debug info.
392 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
393 #    type: key
394 # keymap_toggle_debug = KEY_F5
395
396 #    Key for toggling the display of the profiler. Used for development.
397 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
398 #    type: key
399 # keymap_toggle_profiler = KEY_F6
400
401 #    Key for switching between first- and third-person camera.
402 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
403 #    type: key
404 # keymap_camera_mode = KEY_F7
405
406 #    Key for increasing the viewing range.
407 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
408 #    type: key
409 # keymap_increase_viewing_range_min = +
410
411 #    Key for decreasing the viewing range.
412 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
413 #    type: key
414 # keymap_decrease_viewing_range_min = -
415
416 #
417 # Graphics
418 #
419
420 ## In-Game
421
422 ### Basic
423
424 #    Enable VBO
425 #    type: bool
426 # enable_vbo = true
427
428 #    Whether to fog out the end of the visible area.
429 #    type: bool
430 # enable_fog = true
431
432 #    Leaves style:
433 #    -   Fancy:  all faces visible
434 #    -   Simple: only outer faces, if defined special_tiles are used
435 #    -   Opaque: disable transparency
436 #    type: enum values: fancy, simple, opaque
437 # leaves_style = fancy
438
439 #    Connects glass if supported by node.
440 #    type: bool
441 # connected_glass = false
442
443 #    Enable smooth lighting with simple ambient occlusion.
444 #    Disable for speed or for different looks.
445 #    type: bool
446 # smooth_lighting = true
447
448 #    Clouds are a client side effect.
449 #    type: bool
450 # enable_clouds = true
451
452 #    Use 3D cloud look instead of flat.
453 #    type: bool
454 # enable_3d_clouds = true
455
456 #    Method used to highlight selected object.
457 #    type: enum values: box, halo, none
458 # node_highlighting = box
459
460 #    Adds particles when digging a node.
461 #    type: bool
462 # enable_particles = true
463
464 ### Filtering
465
466 #    Use mip mapping to scale textures. May slightly increase performance.
467 #    type: bool
468 # mip_map = false
469
470 #    Use anisotropic filtering when viewing at textures from an angle.
471 #    type: bool
472 # anisotropic_filter = false
473
474 #    Use bilinear filtering when scaling textures.
475 #    type: bool
476 # bilinear_filter = false
477
478 #    Use trilinear filtering when scaling textures.
479 #    type: bool
480 # trilinear_filter = false
481
482 #    Filtered textures can blend RGB values with fully-transparent neighbors,
483 #    which PNG optimizers usually discard, sometimes resulting in a dark or
484 #    light edge to transparent textures.  Apply this filter to clean that up
485 #    at texture load time.
486 #    type: bool
487 # texture_clean_transparent = false
488
489 #    When using bilinear/trilinear/anisotropic filters, low-resolution textures
490 #    can be blurred, so automatically upscale them with nearest-neighbor
491 #    interpolation to preserve crisp pixels.  This sets the minimum texture size
492 #    for the upscaled textures; higher values look sharper, but require more
493 #    memory.  Powers of 2 are recommended.  Setting this higher than 1 may not
494 #    have a visible effect unless bilinear/trilinear/anisotropic filtering is
495 #    enabled.
496 #    This is also used as the base node texture size for world-aligned
497 #    texture autoscaling.
498 #    type: int
499 # texture_min_size = 64
500
501 #    Experimental option, might cause visible spaces between blocks
502 #    when set to higher number than 0.
503 #    type: enum values: 0, 1, 2, 4, 8, 16
504 # fsaa = 0
505
506 #    Undersampling is similar to using lower screen resolution, but it applies
507 #    to the game world only, keeping the GUI intact.
508 #    It should give significant performance boost at the cost of less detailed image.
509 #    type: enum values: 0, 2, 3, 4
510 # undersampling = 0
511
512 ### Shaders
513
514 #    Shaders allow advanced visual effects and may increase performance on some video cards.
515 #    This only works with the OpenGL video backend.
516 #    type: bool
517 # enable_shaders = true
518
519 #    Path to shader directory. If no path is defined, default location will be used.
520 #    type: path
521 # shader_path =
522
523 #### Tone Mapping
524
525 #    Enables filmic tone mapping
526 #    type: bool
527 # tone_mapping = false
528
529 #### Bumpmapping
530
531 #    Enables bumpmapping for textures. Normalmaps need to be supplied by the texture pack
532 #    or need to be auto-generated.
533 #    Requires shaders to be enabled.
534 #    type: bool
535 # enable_bumpmapping = false
536
537 #    Enables on the fly normalmap generation (Emboss effect).
538 #    Requires bumpmapping to be enabled.
539 #    type: bool
540 # generate_normalmaps = false
541
542 #    Strength of generated normalmaps.
543 #    type: float
544 # normalmaps_strength = 0.6
545
546 #    Defines sampling step of texture.
547 #    A higher value results in smoother normal maps.
548 #    type: int min: 0 max: 2
549 # normalmaps_smooth = 0
550
551 #### Parallax Occlusion
552
553 #    Enables parallax occlusion mapping.
554 #    Requires shaders to be enabled.
555 #    type: bool
556 # enable_parallax_occlusion = false
557
558 #    0 = parallax occlusion with slope information (faster).
559 #    1 = relief mapping (slower, more accurate).
560 #    type: int min: 0 max: 1
561 # parallax_occlusion_mode = 1
562
563 #    Strength of parallax.
564 #    type: float
565 # 3d_paralax_strength = 0.025
566
567 #    Number of parallax occlusion iterations.
568 #    type: int
569 # parallax_occlusion_iterations = 4
570
571 #    Overall scale of parallax occlusion effect.
572 #    type: float
573 # parallax_occlusion_scale = 0.08
574
575 #    Overall bias of parallax occlusion effect, usually scale/2.
576 #    type: float
577 # parallax_occlusion_bias = 0.04
578
579 #### Waving Nodes
580
581 #    Set to true enables waving water.
582 #    Requires shaders to be enabled.
583 #    type: bool
584 # enable_waving_water = false
585
586 #    type: float
587 # water_wave_height = 1.0
588
589 #    type: float
590 # water_wave_length = 20.0
591
592 #    type: float
593 # water_wave_speed = 5.0
594
595 #    Set to true enables waving leaves.
596 #    Requires shaders to be enabled.
597 #    type: bool
598 # enable_waving_leaves = false
599
600 #    Set to true enables waving plants.
601 #    Requires shaders to be enabled.
602 #    type: bool
603 # enable_waving_plants = false
604
605 ### Advanced
606
607 #    Arm inertia, gives a more realistic movement of
608 #    the arm when the camera moves.
609 #    type: bool
610 # arm_inertia = true
611
612 #    If FPS would go higher than this, limit it by sleeping
613 #    to not waste CPU power for no benefit.
614 #    type: int
615 # fps_max = 60
616
617 #    Maximum FPS when game is paused.
618 #    type: int
619 # pause_fps_max = 20
620
621 #    View distance in nodes.
622 #    type: int min: 20 max: 4000
623 # viewing_range = 100
624
625 #    Camera near plane distance in nodes, between 0 and 0.5
626 #    Most users will not need to change this.
627 #    Increasing can reduce artifacting on weaker GPUs.
628 #    0.1 = Default, 0.25 = Good value for weaker tablets.
629 #    type: float min: 0 max: 0.5
630 # near_plane = 0.1
631
632 #    Width component of the initial window size.
633 #    type: int
634 # screen_w = 1024
635
636 #    Height component of the initial window size.
637 #    type: int
638 # screen_h = 600
639
640 #    Save window size automatically when modified.
641 #    type: bool
642 # autosave_screensize = true
643
644 #    Fullscreen mode.
645 #    type: bool
646 # fullscreen = false
647
648 #    Bits per pixel (aka color depth) in fullscreen mode.
649 #    type: int
650 # fullscreen_bpp = 24
651
652 #    Vertical screen synchronization.
653 #    type: bool
654 # vsync = false
655
656 #    Field of view in degrees.
657 #    type: int min: 30 max: 160
658 # fov = 72
659
660 #    Field of view while zooming in degrees.
661 #    Requires to be allowed by server-sided mods.
662 #    type: int min: 7 max: 160
663 # zoom_fov = 15
664
665 #    Adjust the gamma encoding for the light tables. Higher numbers are brighter.
666 #    This setting is for the client only and is ignored by the server.
667 #    type: float min: 0.5 max: 3
668 # display_gamma = 1.0
669
670 #    type: float min: 0 max: 4
671 # lighting_alpha = 0.0
672
673 #    type: float min: 0 max: 4
674 # lighting_beta = 0.0
675
676 #    Path to texture directory. All textures are first searched from here.
677 #    type: path
678 # texture_path =
679
680 #    The rendering back-end for Irrlicht.
681 #    type: enum values: null, software, burningsvideo, direct3d8, direct3d9, opengl
682 # video_driver = opengl
683
684 #    Radius of cloud area stated in number of 64 node cloud squares.
685 #    Values larger than 26 will start to produce sharp cutoffs at cloud area corners.
686 #    type: int
687 # cloud_radius = 12
688
689 #    Enable view bobbing and amount of view bobbing.
690 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
691 #    type: float
692 # view_bobbing_amount = 1.0
693
694 #    Multiplier for fall bobbing.
695 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
696 #    type: float
697 # fall_bobbing_amount = 0.0
698
699 #    3D support.
700 #    Currently supported:
701 #    -    none: no 3d output.
702 #    -    anaglyph: cyan/magenta color 3d.
703 #    -    interlaced: odd/even line based polarisation screen support.
704 #    -    topbottom: split screen top/bottom.
705 #    -    sidebyside: split screen side by side.
706 #    -    pageflip: quadbuffer based 3d.
707 #    Note that the interlaced mode requires shaders to be enabled.
708 #    type: enum values: none, anaglyph, interlaced, topbottom, sidebyside, pageflip
709 # 3d_mode = none
710
711 #    In-game chat console height, between 0.1 (10%) and 1.0 (100%).
712 #    type: float min: 0.1 max: 1
713 # console_height = 0.6
714
715 #    In-game chat console background color (R,G,B).
716 #    type: string
717 # console_color = (0,0,0)
718
719 #    In-game chat console background alpha (opaqueness, between 0 and 255).
720 #    type: int min: 0 max: 255
721 # console_alpha = 200
722
723 #    Formspec full-screen background opacity (between 0 and 255).
724 #    type: int min: 0 max: 255
725 # formspec_fullscreen_bg_opacity = 140
726
727 #    Formspec full-screen background color (R,G,B).
728 #    type: string
729 # formspec_fullscreen_bg_color = (0,0,0)
730
731 #    Formspec default background opacity (between 0 and 255).
732 #    type: int min: 0 max: 255
733 # formspec_default_bg_opacity = 140
734
735 #    Formspec default background color (R,G,B).
736 #    type: string
737 # formspec_default_bg_color = (0,0,0)
738
739 #    Selection box border color (R,G,B).
740 #    type: string
741 # selectionbox_color = (0,0,0)
742
743 #    Width of the selectionbox's lines around nodes.
744 #    type: int min: 1 max: 5
745 # selectionbox_width = 2
746
747 #    Crosshair color (R,G,B).
748 #    type: string
749 # crosshair_color = (255,255,255)
750
751 #    Crosshair alpha (opaqueness, between 0 and 255).
752 #    type: int min: 0 max: 255
753 # crosshair_alpha = 255
754
755 #    Maximum number of recent chat messages to show
756 #    type: int min: 2 max: 20
757 # recent_chat_messages = 6
758
759 #    Whether node texture animations should be desynchronized per mapblock.
760 #    type: bool
761 # desynchronize_mapblock_texture_animation = true
762
763 #    Maximum proportion of current window to be used for hotbar.
764 #    Useful if there's something to be displayed right or left of hotbar.
765 #    type: float
766 # hud_hotbar_max_width = 1.0
767
768 #    Modifies the size of the hudbar elements.
769 #    type: float
770 # hud_scaling = 1.0
771
772 #    Enables caching of facedir rotated meshes.
773 #    type: bool
774 # enable_mesh_cache = false
775
776 #    Delay between mesh updates on the client in ms. Increasing this will slow
777 #    down the rate of mesh updates, thus reducing jitter on slower clients.
778 #    type: int min: 0 max: 50
779 # mesh_generation_interval = 0
780
781 #    Size of the MapBlock cache of the mesh generator. Increasing this will
782 #    increase the cache hit %, reducing the data being copied from the main
783 #    thread, thus reducing jitter.
784 #    type: int min: 0 max: 1000
785 # meshgen_block_cache_size = 20
786
787 #    Enables minimap.
788 #    type: bool
789 # enable_minimap = true
790
791 #    Shape of the minimap. Enabled = round, disabled = square.
792 #    type: bool
793 # minimap_shape_round = true
794
795 #    True = 256
796 #    False = 128
797 #    Useable to make minimap smoother on slower machines.
798 #    type: bool
799 # minimap_double_scan_height = true
800
801 #    Make fog and sky colors depend on daytime (dawn/sunset) and view direction.
802 #    type: bool
803 # directional_colored_fog = true
804
805 #    The strength (darkness) of node ambient-occlusion shading.
806 #    Lower is darker, Higher is lighter. The valid range of values for this
807 #    setting is 0.25 to 4.0 inclusive. If the value is out of range it will be
808 #    set to the nearest valid value.
809 #    type: float min: 0.25 max: 4
810 # ambient_occlusion_gamma = 2.2
811
812 #    Enables animation of inventory items.
813 #    type: bool
814 # inventory_items_animations = false
815
816 #    Android systems only: Tries to create inventory textures from meshes
817 #    when no supported render was found.
818 #    type: bool
819 # inventory_image_hack = false
820
821 #    Fraction of the visible distance at which fog starts to be rendered
822 #    type: float min: 0 max: 0.99
823 # fog_start = 0.4
824
825 #    Makes all liquids opaque
826 #    type: bool
827 # opaque_water = false
828
829 #    Textures on a node may be aligned either to the node or to the world.
830 #    The former mode suits better things like machines, furniture, etc., while
831 #    the latter makes stairs and microblocks fit surroundings better.
832 #    However, as this possibility is new, thus may not be used by older servers,
833 #    this option allows enforcing it for certain node types. Note though that
834 #    that is considered EXPERIMENTAL and may not work properly.
835 #    type: enum values: disable, enable, force_solid, force_nodebox
836 # world_aligned_mode = enable
837
838 #    World-aligned textures may be scaled to span several nodes. However,
839 #    the server may not send the scale you want, especially if you use
840 #    a specially-designed texture pack; with this option, the client tries
841 #    to determine the scale automatically basing on the texture size.
842 #    See also texture_min_size.
843 #    Warning: this option is EXPERIMENTAL!
844 #    type: enum values: disable, enable, force
845 # autoscale_mode = disable
846
847 #    Show entity selection boxes
848 #    type: bool
849 # show_entity_selectionbox = true
850
851 ## Menus
852
853 #    Use a cloud animation for the main menu background.
854 #    type: bool
855 # menu_clouds = true
856
857 #    Scale gui by a user specified value.
858 #    Use a nearest-neighbor-anti-alias filter to scale the GUI.
859 #    This will smooth over some of the rough edges, and blend
860 #    pixels when scaling down, at the cost of blurring some
861 #    edge pixels when images are scaled by non-integer sizes.
862 #    type: float
863 # gui_scaling = 1.0
864
865 #    When gui_scaling_filter is true, all GUI images need to be
866 #    filtered in software, but some images are generated directly
867 #    to hardware (e.g. render-to-texture for nodes in inventory).
868 #    type: bool
869 # gui_scaling_filter = false
870
871 #    When gui_scaling_filter_txr2img is true, copy those images
872 #    from hardware to software for scaling.  When false, fall back
873 #    to the old scaling method, for video drivers that don't
874 #    properly support downloading textures back from hardware.
875 #    type: bool
876 # gui_scaling_filter_txr2img = true
877
878 #    Delay showing tooltips, stated in milliseconds.
879 #    type: int
880 # tooltip_show_delay = 400
881
882 #    Append item name to tooltip.
883 #    type: bool
884 # tooltip_append_itemname = false
885
886 #    Whether freetype fonts are used, requires freetype support to be compiled in.
887 #    type: bool
888 # freetype = true
889
890 #    Path to TrueTypeFont or bitmap.
891 #    type: filepath
892 # font_path = fonts/liberationsans.ttf
893
894 #    type: int
895 # font_size = 16
896
897 #    Font shadow offset, if 0 then shadow will not be drawn.
898 #    type: int
899 # font_shadow = 1
900
901 #    Font shadow alpha (opaqueness, between 0 and 255).
902 #    type: int min: 0 max: 255
903 # font_shadow_alpha = 127
904
905 #    type: filepath
906 # mono_font_path = fonts/liberationmono.ttf
907
908 #    type: int
909 # mono_font_size = 15
910
911 #    This font will be used for certain languages.
912 #    type: filepath
913 # fallback_font_path = fonts/DroidSansFallbackFull.ttf
914
915 #    type: int
916 # fallback_font_size = 15
917
918 #    type: int
919 # fallback_font_shadow = 1
920
921 #    type: int min: 0 max: 255
922 # fallback_font_shadow_alpha = 128
923
924 #    Path to save screenshots at.
925 #    type: path
926 # screenshot_path =
927
928 #    Format of screenshots.
929 #    type: enum values: png, jpg, bmp, pcx, ppm, tga
930 # screenshot_format = png
931
932 #    Screenshot quality. Only used for JPEG format.
933 #    1 means worst quality; 100 means best quality.
934 #    Use 0 for default quality.
935 #    type: int min: 0 max: 100
936 # screenshot_quality = 0
937
938 ## Advanced
939
940 #    Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k screens.
941 #    type: int
942 # screen_dpi = 72
943
944 #    Windows systems only: Start Minetest with the command line window in the background.
945 #    Contains the same information as the file debug.txt (default name).
946 #    type: bool
947 # enable_console = false
948
949 #
950 # Sound
951 #
952
953 #    type: bool
954 # enable_sound = true
955
956 #    type: float min: 0 max: 1
957 # sound_volume = 0.7
958
959 #    type: bool
960 # mute_sound = false
961
962 #
963 # Client
964 #
965
966 ## Network
967
968 #    Address to connect to.
969 #    Leave this blank to start a local server.
970 #    Note that the address field in the main menu overrides this setting.
971 #    type: string
972 # address =
973
974 #    Port to connect to (UDP).
975 #    Note that the port field in the main menu overrides this setting.
976 #    type: int min: 1 max: 65535
977 # remote_port = 30000
978
979 #    Save the map received by the client on disk.
980 #    type: bool
981 # enable_local_map_saving = false
982
983 #    Enable usage of remote media server (if provided by server).
984 #    Remote servers offer a significantly faster way to download media (e.g. textures)
985 #    when connecting to the server.
986 #    type: bool
987 # enable_remote_media_server = true
988
989 #    Enable Lua modding support on client.
990 #    This support is experimental and API can change.
991 #    type: bool
992 # enable_client_modding = false
993
994 #    URL to the server list displayed in the Multiplayer Tab.
995 #    type: string
996 # serverlist_url = servers.minetest.net
997
998 #    File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab.
999 #    type: string
1000 # serverlist_file = favoriteservers.txt
1001
1002 #    Maximum size of the out chat queue. 0 to disable queueing and -1 to make the queue size unlimited
1003 #    type: int
1004 # max_out_chat_queue_size = 20
1005
1006 #    Open the pause menu when the window's focus is lost. Does not pause if a formspec is open.
1007 #    type: bool
1008 # pause_on_lost_focus = false
1009
1010 ## Advanced
1011
1012 #    Timeout for client to remove unused map data from memory.
1013 #    type: int
1014 # client_unload_unused_data_timeout = 600
1015
1016 #    Maximum number of mapblocks for client to be kept in memory.
1017 #    Set to -1 for unlimited amount.
1018 #    type: int
1019 # client_mapblock_limit = 5000
1020
1021 #    Whether to show the client debug info (has the same effect as hitting F5).
1022 #    type: bool
1023 # show_debug = false
1024
1025 #
1026 # Server / Singleplayer
1027 #
1028
1029 #    Name of the server, to be displayed when players join and in the serverlist.
1030 #    type: string
1031 # server_name = Minetest server
1032
1033 #    Description of server, to be displayed when players join and in the serverlist.
1034 #    type: string
1035 # server_description = mine here
1036
1037 #    Domain name of server, to be displayed in the serverlist.
1038 #    type: string
1039 # server_address = game.minetest.net
1040
1041 #    Homepage of server, to be displayed in the serverlist.
1042 #    type: string
1043 # server_url = http://minetest.net
1044
1045 #    Automaticaly report to the serverlist.
1046 #    type: bool
1047 # server_announce = false
1048
1049 #    Announce to this serverlist.
1050 #    type: string
1051 # serverlist_url = servers.minetest.net
1052
1053 #    Remove color codes from incoming chat messages
1054 #    Use this to stop players from being able to use color in their messages
1055 #    type: bool
1056 # strip_color_codes = false
1057
1058 ## Network
1059
1060 #    Network port to listen (UDP).
1061 #    This value will be overridden when starting from the main menu.
1062 #    type: int
1063 # port = 30000
1064
1065 #    The network interface that the server listens on.
1066 #    type: string
1067 # bind_address =
1068
1069 #    Enable to disallow old clients from connecting.
1070 #    Older clients are compatible in the sense that they will not crash when connecting
1071 #    to new servers, but they may not support all new features that you are expecting.
1072 #    type: bool
1073 # strict_protocol_version_checking = false
1074
1075 #    Specifies URL from which client fetches media instead of using UDP.
1076 #    $filename should be accessible from $remote_media$filename via cURL
1077 #    (obviously, remote_media should end with a slash).
1078 #    Files that are not present will be fetched the usual way.
1079 #    type: string
1080 # remote_media =
1081
1082 #    Enable/disable running an IPv6 server.  An IPv6 server may be restricted
1083 #    to IPv6 clients, depending on system configuration.
1084 #    Ignored if bind_address is set.
1085 #    type: bool
1086 # ipv6_server = false
1087
1088 ### Advanced
1089
1090 #    Maximum number of blocks that are simultaneously sent per client.
1091 #    The maximum total count is calculated dynamically:
1092 #    max_total = ceil((#clients + max_users) * per_client / 4)
1093 #    type: int
1094 # max_simultaneous_block_sends_per_client = 10
1095
1096 #    To reduce lag, block transfers are slowed down when a player is building something.
1097 #    This determines how long they are slowed down after placing or removing a node.
1098 #    type: float
1099 # full_block_send_enable_min_time_from_building = 2.0
1100
1101 #    Maximum number of packets sent per send step, if you have a slow connection
1102 #    try reducing it, but don't reduce it to a number below double of targeted
1103 #    client number.
1104 #    type: int
1105 # max_packets_per_iteration = 1024
1106
1107 ## Game
1108
1109 #    Default game when creating a new world.
1110 #    This will be overridden when creating a world from the main menu.
1111 #    type: string
1112 # default_game = minetest
1113
1114 #    Message of the day displayed to players connecting.
1115 #    type: string
1116 # motd =
1117
1118 #    Maximum number of players that can connect simultaneously.
1119 #    type: int
1120 # max_users = 15
1121
1122 #    World directory (everything in the world is stored here).
1123 #    Not needed if starting from the main menu.
1124 #    type: path
1125 # map-dir =
1126
1127 #    Time in seconds for item entity (dropped items) to live.
1128 #    Setting it to -1 disables the feature.
1129 #    type: int
1130 # item_entity_ttl = 900
1131
1132 #    If enabled, show the server status message on player connection.
1133 #    type: bool
1134 # show_statusline_on_connect = true
1135
1136 #    Enable players getting damage and dying.
1137 #    type: bool
1138 # enable_damage = false
1139
1140 #    Enable creative mode for new created maps.
1141 #    type: bool
1142 # creative_mode = false
1143
1144 #    A chosen map seed for a new map, leave empty for random.
1145 #    Will be overridden when creating a new world in the main menu.
1146 #    type: string
1147 # fixed_map_seed =
1148
1149 #    New users need to input this password.
1150 #    type: string
1151 # default_password =
1152
1153 #    The privileges that new users automatically get.
1154 #    See /privs in game for a full list on your server and mod configuration.
1155 #    type: string
1156 # default_privs = interact, shout
1157
1158 #    Privileges that players with basic_privs can grant
1159 #    type: string
1160 # basic_privs = interact, shout
1161
1162 #    Whether players are shown to clients without any range limit.
1163 #    Deprecated, use the setting player_transfer_distance instead.
1164 #    type: bool
1165 # unlimited_player_transfer_distance = true
1166
1167 #    Defines the maximal player transfer distance in blocks (0 = unlimited).
1168 #    type: int
1169 # player_transfer_distance = 0
1170
1171 #    Whether to allow players to damage and kill each other.
1172 #    type: bool
1173 # enable_pvp = true
1174
1175 #    Enable mod channels support.
1176 #    type: bool
1177 # enable_mod_channels = false
1178
1179 #    If this is set, players will always (re)spawn at the given position.
1180 #    type: string
1181 # static_spawnpoint =
1182
1183 #    If enabled, new players cannot join with an empty password.
1184 #    type: bool
1185 # disallow_empty_password = false
1186
1187 #    If enabled, disable cheat prevention in multiplayer.
1188 #    type: bool
1189 # disable_anticheat = false
1190
1191 #    If enabled, actions are recorded for rollback.
1192 #    This option is only read when server starts.
1193 #    type: bool
1194 # enable_rollback_recording = false
1195
1196 #    A message to be displayed to all clients when the server shuts down.
1197 #    type: string
1198 # kick_msg_shutdown = Server shutting down.
1199
1200 #    A message to be displayed to all clients when the server crashes.
1201 #    type: string
1202 # kick_msg_crash = This server has experienced an internal error. You will now be disconnected.
1203
1204 #    Whether to ask clients to reconnect after a (Lua) crash.
1205 #    Set this to true if your server is set up to restart automatically.
1206 #    type: bool
1207 # ask_reconnect_on_crash = false
1208
1209 #    From how far clients know about objects, stated in mapblocks (16 nodes).
1210 #    type: int
1211 # active_object_send_range_blocks = 3
1212
1213 #    How large area of blocks are subject to the active block stuff, stated in mapblocks (16 nodes).
1214 #    In active blocks objects are loaded and ABMs run.
1215 #    type: int
1216 # active_block_range = 3
1217
1218 #    From how far blocks are sent to clients, stated in mapblocks (16 nodes).
1219 #    type: int
1220 # max_block_send_distance = 10
1221
1222 #    Maximum number of forceloaded mapblocks.
1223 #    type: int
1224 # max_forceloaded_blocks = 16
1225
1226 #    Interval of sending time of day to clients.
1227 #    type: int
1228 # time_send_interval = 5
1229
1230 #    Controls length of day/night cycle.
1231 #    Examples: 72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged.
1232 #    type: int
1233 # time_speed = 72
1234
1235 #    Time of day when a new world is started, in millihours (0-23999).
1236 #    type: int min: 0 max: 23999
1237 # world_start_time = 5250
1238
1239 #    Interval of saving important changes in the world, stated in seconds.
1240 #    type: float
1241 # server_map_save_interval = 5.3
1242
1243 ### Physics
1244
1245 #    type: float
1246 # movement_acceleration_default = 3
1247
1248 #    type: float
1249 # movement_acceleration_air = 2
1250
1251 #    type: float
1252 # movement_acceleration_fast = 10
1253
1254 #    type: float
1255 # movement_speed_walk = 4
1256
1257 #    type: float
1258 # movement_speed_crouch = 1.35
1259
1260 #    type: float
1261 # movement_speed_fast = 20
1262
1263 #    type: float
1264 # movement_speed_climb = 3
1265
1266 #    type: float
1267 # movement_speed_jump = 6.5
1268
1269 #    type: float
1270 # movement_liquid_fluidity = 1
1271
1272 #    type: float
1273 # movement_liquid_fluidity_smooth = 0.5
1274
1275 #    type: float
1276 # movement_liquid_sink = 10
1277
1278 #    type: float
1279 # movement_gravity = 9.81
1280
1281 ### Advanced
1282
1283 #    Handling for deprecated lua api calls:
1284 #    -    legacy: (try to) mimic old behaviour (default for release).
1285 #    -    log: mimic and log backtrace of deprecated call (default for debug).
1286 #    -    error: abort on usage of deprecated call (suggested for mod developers).
1287 #    type: enum values: legacy, log, error
1288 # deprecated_lua_api_handling = legacy
1289
1290 #    Number of extra blocks that can be loaded by /clearobjects at once.
1291 #    This is a trade-off between sqlite transaction overhead and
1292 #    memory consumption (4096=100MB, as a rule of thumb).
1293 #    type: int
1294 # max_clearobjects_extra_loaded_blocks = 4096
1295
1296 #    How much the server will wait before unloading unused mapblocks.
1297 #    Higher value is smoother, but will use more RAM.
1298 #    type: int
1299 # server_unload_unused_data_timeout = 29
1300
1301 #    Maximum number of statically stored objects in a block.
1302 #    type: int
1303 # max_objects_per_block = 64
1304
1305 #    See http://www.sqlite.org/pragma.html#pragma_synchronous
1306 #    type: enum values: 0, 1, 2
1307 # sqlite_synchronous = 2
1308
1309 #    Length of a server tick and the interval at which objects are generally updated over network.
1310 #    type: float
1311 # dedicated_server_step = 0.09
1312
1313 #    Time in between active block management cycles
1314 #    type: float
1315 # active_block_mgmt_interval = 2.0
1316
1317 #    Length of time between ABM execution cycles
1318 #    type: float
1319 # abm_interval = 1.0
1320
1321 #    Length of time between NodeTimer execution cycles
1322 #    type: float
1323 # nodetimer_interval = 0.2
1324
1325 #    If enabled, invalid world data won't cause the server to shut down.
1326 #    Only enable this if you know what you are doing.
1327 #    type: bool
1328 # ignore_world_load_errors = false
1329
1330 #    Max liquids processed per step.
1331 #    type: int
1332 # liquid_loop_max = 100000
1333
1334 #    The time (in seconds) that the liquids queue may grow beyond processing
1335 #    capacity until an attempt is made to decrease its size by dumping old queue
1336 #    items.  A value of 0 disables the functionality.
1337 #    type: int
1338 # liquid_queue_purge_time = 0
1339
1340 #    Liquid update interval in seconds.
1341 #    type: float
1342 # liquid_update = 1.0
1343
1344 #    At this distance the server will aggressively optimize which blocks are sent to clients.
1345 #    Small values potentially improve performance a lot, at the expense of visible rendering glitches.
1346 #    (some blocks will not be rendered under water and in caves, as well as sometimes on land)
1347 #    Setting this to a value greater than max_block_send_distance disables this optimization.
1348 #    Stated in mapblocks (16 nodes)
1349 #    type: int min: 2
1350 # block_send_optimize_distance = 4
1351
1352 #    If enabled the server will perform map block occlusion culling based on
1353 #    on the eye position of the player. This can reduce the number of blocks
1354 #    sent to the client 50-80%. The client will not longer receive most invisible
1355 #    so that the utility of noclip mode is reduced.
1356 #    type: bool
1357 # server_side_occlusion_culling = true
1358
1359 #    Restricts the access of certain client-side functions on servers
1360 #    Combine these byteflags below to restrict more client-side features:
1361 #    LOAD_CLIENT_MODS: 1 (disable client mods loading)
1362 #    CHAT_MESSAGES: 2 (disable send_chat_message call client-side)
1363 #    READ_ITEMDEFS: 4 (disable get_item_def call client-side)
1364 #    READ_NODEDEFS: 8 (disable get_node_def call client-side)
1365 #    type: int
1366 #    LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to csm_flavour_noderange_limit)
1367 # csm_flavour_limits = 18
1368
1369 #    If the CSM flavour for node range is enabled, get_node is limited to
1370 #    this many nodes from the player.
1371 #    type: int
1372 # csm_flavour_noderange_limit = 8
1373
1374 ## Security
1375
1376 #    Prevent mods from doing insecure things like running shell commands.
1377 #    type: bool
1378 # secure.enable_security = true
1379
1380 #    Comma-separated list of trusted mods that are allowed to access insecure
1381 #    functions even when mod security is on (via request_insecure_environment()).
1382 #    type: string
1383 # secure.trusted_mods =
1384
1385 #    Comma-separated list of mods that are allowed to access HTTP APIs, which
1386 #    allow them to upload and download data to/from the internet.
1387 #    type: string
1388 # secure.http_mods =
1389
1390 ## Advanced
1391
1392 ### Profiling
1393
1394 #    Load the game profiler to collect game profiling data.
1395 #    Provides a /profiler command to access the compiled profile.
1396 #    Useful for mod developers and server operators.
1397 #    type: bool
1398 # profiler.load = false
1399
1400 #    The default format in which profiles are being saved,
1401 #    when calling `/profiler save [format]` without format.
1402 #    type: enum values: txt, csv, lua, json, json_pretty
1403 # profiler.default_report_format = txt
1404
1405 #    The file path relative to your worldpath in which profiles will be saved to.
1406 #    type: string
1407 # profiler.report_path = ""
1408
1409 #### Instrumentation
1410
1411 #    Instrument the methods of entities on registration.
1412 #    type: bool
1413 # instrument.entity = true
1414
1415 #    Instrument the action function of Active Block Modifiers on registration.
1416 #    type: bool
1417 # instrument.abm = true
1418
1419 #    Instrument the action function of Loading Block Modifiers on registration.
1420 #    type: bool
1421 # instrument.lbm = true
1422
1423 #    Instrument chatcommands on registration.
1424 #    type: bool
1425 # instrument.chatcommand = true
1426
1427 #    Instrument global callback functions on registration.
1428 #    (anything you pass to a minetest.register_*() function)
1429 #    type: bool
1430 # instrument.global_callback = true
1431
1432 ##### Advanced
1433
1434 #    Instrument builtin.
1435 #    This is usually only needed by core/builtin contributors
1436 #    type: bool
1437 # instrument.builtin = false
1438
1439 #    Have the profiler instrument itself:
1440 #    * Instrument an empty function.
1441 #    This estimates the overhead, that instrumentation is adding (+1 function call).
1442 #    * Instrument the sampler being used to update the statistics.
1443 #    type: bool
1444 # instrument.profiler = false
1445
1446 #
1447 # Client and Server
1448 #
1449
1450 #    Name of the player.
1451 #    When running a server, clients connecting with this name are admins.
1452 #    When starting from the main menu, this is overridden.
1453 #    type: string
1454 # name =
1455
1456 #    Set the language. Leave empty to use the system language.
1457 #    A restart is required after changing this.
1458 #    type: enum values: , be, ca, cs, da, de, en, eo, es, et, fr, he, hu, id, it, ja, jbo, ko, ky, lt, nb, nl, pl, pt, pt_BR, ro, ru, sr_Cyrl, tr, uk, zh_CN, zh_TW
1459 # language =
1460
1461 #    Level of logging to be written to debug.txt:
1462 #    -    <nothing> (no logging)
1463 #    -    none (messages with no level)
1464 #    -    error
1465 #    -    warning
1466 #    -    action
1467 #    -    info
1468 #    -    verbose
1469 #    type: enum values: , none, error, warning, action, info, verbose
1470 # debug_log_level = action
1471
1472 #    IPv6 support.
1473 #    type: bool
1474 # enable_ipv6 = true
1475
1476 ## Advanced
1477
1478 #    Default timeout for cURL, stated in milliseconds.
1479 #    Only has an effect if compiled with cURL.
1480 #    type: int
1481 # curl_timeout = 5000
1482
1483 #    Limits number of parallel HTTP requests. Affects:
1484 #    -    Media fetch if server uses remote_media setting.
1485 #    -    Serverlist download and server announcement.
1486 #    -    Downloads performed by main menu (e.g. mod manager).
1487 #    Only has an effect if compiled with cURL.
1488 #    type: int
1489 # curl_parallel_limit = 8
1490
1491 #    Maximum time in ms a file download (e.g. a mod download) may take.
1492 #    type: int
1493 # curl_file_download_timeout = 300000
1494
1495 #    Makes DirectX work with LuaJIT. Disable if it causes troubles.
1496 #    type: bool
1497 # high_precision_fpu = true
1498
1499 #    Replaces the default main menu with a custom one.
1500 #    type: string
1501 # main_menu_script =
1502
1503 #    type: int
1504 # main_menu_game_mgr = 0
1505
1506 #    type: int
1507 # main_menu_mod_mgr = 1
1508
1509 #    Print the engine's profiling data in regular intervals (in seconds). 0 = disable. Useful for developers.
1510 #    type: int
1511 # profiler_print_interval = 0
1512
1513 #
1514 # Mapgen
1515 #
1516
1517 #    Name of map generator to be used when creating a new world.
1518 #    Creating a world in the main menu will override this.
1519 #    type: enum values: v5, v6, v7, flat, valleys, fractal, singlenode
1520 # mg_name = v7
1521
1522 #    Water surface level of the world.
1523 #    type: int
1524 # water_level = 1
1525
1526 #    From how far blocks are generated for clients, stated in mapblocks (16 nodes).
1527 #    type: int
1528 # max_block_generate_distance = 6
1529
1530 #    Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).
1531 #    Only mapchunks completely within the mapgen limit are generated.
1532 #    Value is stored per-world.
1533 #    type: int min: 0 max: 31000
1534 # mapgen_limit = 31000
1535
1536 #    Global map generation attributes.
1537 #    In Mapgen v6 the 'decorations' flag controls all decorations except trees
1538 #    and junglegrass, in all other mapgens this flag controls all decorations.
1539 #    Flags that are not enabled are not modified from the default.
1540 #    Flags starting with 'no' are used to explicitly disable them.
1541 #    type: flags possible values: caves, dungeons, light, decorations, nocaves, nodungeons, nolight, nodecorations
1542 # mg_flags = caves,dungeons,light,decorations
1543
1544 #    Whether dungeons occasionally project from the terrain.
1545 #    type: bool
1546 # projecting_dungeons = true
1547
1548 ## Biome API temperature and humidity noise parameters
1549
1550 #    Temperature variation for biomes.
1551 #    type: noise_params_2d
1552 # mg_biome_np_heat = {
1553 #    offset      = 50,
1554 #    scale       = 50,
1555 #    spread      = (1000, 1000, 1000),
1556 #    seed        = 5349,
1557 #    octaves     = 3,
1558 #    persistence = 0.5,
1559 #    lacunarity  = 2.0,
1560 #    flags       = "eased"
1561 # }
1562
1563 #    Small-scale temperature variation for blending biomes on borders.
1564 #    type: noise_params_2d
1565 # mg_biome_np_heat_blend = {
1566 #    offset      = 0,
1567 #    scale       = 1.5,
1568 #    spread      = (8, 8, 8),
1569 #    seed        = 13,
1570 #    octaves     = 2,
1571 #    persistence = 1.0,
1572 #    lacunarity  = 2.0,
1573 #    flags       = "eased"
1574 # }
1575
1576 #    Humidity variation for biomes.
1577 #    type: noise_params_2d
1578 # mg_biome_np_humidity = {
1579 #    offset      = 50,
1580 #    scale       = 50,
1581 #    spread      = (1000, 1000, 1000),
1582 #    seed        = 842,
1583 #    octaves     = 3,
1584 #    persistence = 0.5,
1585 #    lacunarity  = 2.0,
1586 #    flags       = "eased"
1587 # }
1588
1589 #    Small-scale humidity variation for blending biomes on borders.
1590 #    type: noise_params_2d
1591 # mg_biome_np_humidity_blend = {
1592 #    offset      = 0,
1593 #    scale       = 1.5,
1594 #    spread      = (8, 8, 8),
1595 #    seed        = 90003,
1596 #    octaves     = 2,
1597 #    persistence = 1.0,
1598 #    lacunarity  = 2.0,
1599 #    flags       = "eased"
1600 # }
1601
1602 ## Mapgen V5
1603
1604 #    Map generation attributes specific to Mapgen v5.
1605 #    Flags that are not enabled are not modified from the default.
1606 #    Flags starting with 'no' are used to explicitly disable them.
1607 #    type: flags possible values: caverns, nocaverns
1608 # mgv5_spflags = caverns
1609
1610 #    Controls width of tunnels, a smaller value creates wider tunnels.
1611 #    type: float
1612 # mgv5_cave_width = 0.125
1613
1614 #    Y of upper limit of large caves.
1615 #    type: int
1616 # mgv5_large_cave_depth = -256
1617
1618 #    Y of upper limit of lava in large caves.
1619 #    type: int
1620 # mgv5_lava_depth = -256
1621
1622 #    Y-level of cavern upper limit.
1623 #    type: int
1624 # mgv5_cavern_limit = -256
1625
1626 #    Y-distance over which caverns expand to full size.
1627 #    type: int
1628 # mgv5_cavern_taper = 256
1629
1630 #    Defines full size of caverns, smaller values create larger caverns.
1631 #    type: float
1632 # mgv5_cavern_threshold = 0.7
1633
1634 ### Noises
1635
1636 #    Variation of biome filler depth.
1637 #    type: noise_params_2d
1638 # mgv5_np_filler_depth = {
1639 #    offset      = 0,
1640 #    scale       = 1,
1641 #    spread      = (150, 150, 150),
1642 #    seed        = 261,
1643 #    octaves     = 4,
1644 #    persistence = 0.7,
1645 #    lacunarity  = 2.0,
1646 #    flags       = "eased"
1647 # }
1648
1649 #    Variation of terrain vertical scale.
1650 #    When noise is < -0.55 terrain is near-flat.
1651 #    type: noise_params_2d
1652 # mgv5_np_factor = {
1653 #    offset      = 0,
1654 #    scale       = 1,
1655 #    spread      = (250, 250, 250),
1656 #    seed        = 920381,
1657 #    octaves     = 3,
1658 #    persistence = 0.45,
1659 #    lacunarity  = 2.0,
1660 #    flags       = "eased"
1661 # }
1662
1663 #    Y-level of average terrain surface.
1664 #    type: noise_params_2d
1665 # mgv5_np_height = {
1666 #    offset      = 0,
1667 #    scale       = 10,
1668 #    spread      = (250, 250, 250),
1669 #    seed        = 84174,
1670 #    octaves     = 4,
1671 #    persistence = 0.5,
1672 #    lacunarity  = 2.0,
1673 #    flags       = "eased"
1674 # }
1675
1676 #    First of 2 3D noises that together define tunnels.
1677 #    type: noise_params_3d
1678 # mgv5_np_cave1 = {
1679 #    offset      = 0,
1680 #    scale       = 12,
1681 #    spread      = (50, 50, 50),
1682 #    seed        = 52534,
1683 #    octaves     = 4,
1684 #    persistence = 0.5,
1685 #    lacunarity  = 2.0,
1686 #    flags       = ""
1687 # }
1688
1689 #    Second of 2 3D noises that together define tunnels.
1690 #    type: noise_params_3d
1691 # mgv5_np_cave2 = {
1692 #    offset      = 0,
1693 #    scale       = 12,
1694 #    spread      = (50, 50, 50),
1695 #    seed        = 10325,
1696 #    octaves     = 4,
1697 #    persistence = 0.5,
1698 #    lacunarity  = 2.0,
1699 #    flags       = ""
1700 # }
1701
1702 #    3D noise defining giant caverns.
1703 #    type: noise_params_3d
1704 # mgv5_np_cavern = {
1705 #    offset      = 0,
1706 #    scale       = 1,
1707 #    spread      = (384, 128, 384),
1708 #    seed        = 723,
1709 #    octaves     = 5,
1710 #    persistence = 0.63,
1711 #    lacunarity  = 2.0,
1712 #    flags       = ""
1713 # }
1714
1715 #    3D noise defining terrain.
1716 #    type: noise_params_3d
1717 # mgv5_np_ground = {
1718 #    offset      = 0,
1719 #    scale       = 40,
1720 #    spread      = (80, 80, 80),
1721 #    seed        = 983240,
1722 #    octaves     = 4,
1723 #    persistence = 0.55,
1724 #    lacunarity  = 2.0,
1725 #    flags       = "eased"
1726 # }
1727
1728 ## Mapgen V6
1729
1730 #    Map generation attributes specific to Mapgen v6.
1731 #    The 'snowbiomes' flag enables the new 5 biome system.
1732 #    When the new biome system is enabled jungles are automatically enabled and
1733 #    the 'jungles' flag is ignored.
1734 #    Flags that are not enabled are not modified from the default.
1735 #    Flags starting with 'no' are used to explicitly disable them.
1736 #    type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, flat, trees, nojungles, nobiomeblend, nomudflow, nosnowbiomes, noflat, notrees
1737 # mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes,trees
1738
1739 #    Deserts occur when np_biome exceeds this value.
1740 #    When the new biome system is enabled, this is ignored.
1741 #    type: float
1742 # mgv6_freq_desert = 0.45
1743
1744 #    Sandy beaches occur when np_beach exceeds this value.
1745 #    type: float
1746 # mgv6_freq_beach = 0.15
1747
1748 ### Noises
1749
1750 #    Y-level of lower terrain and lakebeds.
1751 #    type: noise_params_2d
1752 # mgv6_np_terrain_base = {
1753 #    offset      = -4,
1754 #    scale       = 20,
1755 #    spread      = (250, 250, 250),
1756 #    seed        = 82341,
1757 #    octaves     = 5,
1758 #    persistence = 0.6,
1759 #    lacunarity  = 2.0,
1760 #    flags       = "eased"
1761 # }
1762
1763 #    Y-level of higher (cliff-top) terrain.
1764 #    type: noise_params_2d
1765 # mgv6_np_terrain_higher = {
1766 #    offset      = 20,
1767 #    scale       = 16,
1768 #    spread      = (500, 500, 500),
1769 #    seed        = 85039,
1770 #    octaves     = 5,
1771 #    persistence = 0.6,
1772 #    lacunarity  = 2.0,
1773 #    flags       = "eased"
1774 # }
1775
1776 #    Varies steepness of cliffs.
1777 #    type: noise_params_2d
1778 # mgv6_np_steepness = {
1779 #    offset      = 0.85,
1780 #    scale       = 0.5,
1781 #    spread      = (125, 125, 125),
1782 #    seed        = -932,
1783 #    octaves     = 5,
1784 #    persistence = 0.7,
1785 #    lacunarity  = 2.0,
1786 #    flags       = "eased"
1787 # }
1788
1789 #    Defines areas of 'terrain_higher' (cliff-top terrain).
1790 #    type: noise_params_2d
1791 # mgv6_np_height_select = {
1792 #    offset      = 0.5,
1793 #    scale       = 1,
1794 #    spread      = (250, 250, 250),
1795 #    seed        = 4213,
1796 #    octaves     = 5,
1797 #    persistence = 0.69,
1798 #    lacunarity  = 2.0,
1799 #    flags       = "eased"
1800 # }
1801
1802 #    Varies depth of biome surface nodes.
1803 #    type: noise_params_2d
1804 # mgv6_np_mud = {
1805 #    offset      = 4,
1806 #    scale       = 2,
1807 #    spread      = (200, 200, 200),
1808 #    seed        = 91013,
1809 #    octaves     = 3,
1810 #    persistence = 0.55,
1811 #    lacunarity  = 2.0,
1812 #    flags       = "eased"
1813 # }
1814
1815 #    Defines areas with sandy beaches.
1816 #    type: noise_params_2d
1817 # mgv6_np_beach = {
1818 #    offset      = 0,
1819 #    scale       = 1,
1820 #    spread      = (250, 250, 250),
1821 #    seed        = 59420,
1822 #    octaves     = 3,
1823 #    persistence = 0.50,
1824 #    lacunarity  = 2.0,
1825 #    flags       = "eased"
1826 # }
1827
1828 #    Temperature variation for biomes.
1829 #    type: noise_params_2d
1830 # mgv6_np_biome = {
1831 #    offset      = 0,
1832 #    scale       = 1,
1833 #    spread      = (500, 500, 500),
1834 #    seed        = 9130,
1835 #    octaves     = 3,
1836 #    persistence = 0.50,
1837 #    lacunarity  = 2.0,
1838 #    flags       = "eased"
1839 # }
1840
1841 #    Variation of number of caves.
1842 #    type: noise_params_2d
1843 # mgv6_np_cave = {
1844 #    offset      = 6,
1845 #    scale       = 6,
1846 #    spread      = (250, 250, 250),
1847 #    seed        = 34329,
1848 #    octaves     = 3,
1849 #    persistence = 0.50,
1850 #    lacunarity  = 2.0,
1851 #    flags       = "eased"
1852 # }
1853
1854 #    Humidity variation for biomes.
1855 #    type: noise_params_2d
1856 # mgv6_np_humidity = {
1857 #    offset      = 0.5,
1858 #    scale       = 0.5,
1859 #    spread      = (500, 500, 500),
1860 #    seed        = 72384,
1861 #    octaves     = 3,
1862 #    persistence = 0.50,
1863 #    lacunarity  = 2.0,
1864 #    flags       = "eased"
1865 # }
1866
1867 #    Defines tree areas and tree density.
1868 #    type: noise_params_2d
1869 # mgv6_np_trees = {
1870 #    offset      = 0,
1871 #    scale       = 1,
1872 #    spread      = (125, 125, 125),
1873 #    seed        = 2,
1874 #    octaves     = 4,
1875 #    persistence = 0.66,
1876 #    lacunarity  = 2.0,
1877 #    flags       = "eased"
1878 # }
1879
1880 #    Defines areas where trees have apples.
1881 #    type: noise_params_2d
1882 # mgv6_np_apple_trees = {
1883 #    offset      = 0,
1884 #    scale       = 1,
1885 #    spread      = (100, 100, 100),
1886 #    seed        = 342902,
1887 #    octaves     = 3,
1888 #    persistence = 0.45,
1889 #    lacunarity  = 2.0,
1890 #    flags       = "eased"
1891 # }
1892
1893 ## Mapgen V7
1894
1895 #    Map generation attributes specific to Mapgen v7.
1896 #    'ridges' enables the rivers.
1897 #    Flags that are not enabled are not modified from the default.
1898 #    Flags starting with 'no' are used to explicitly disable them.
1899 #    type: flags possible values: mountains, ridges, floatlands, caverns, nomountains, noridges, nofloatlands, nocaverns
1900 # mgv7_spflags = mountains,ridges,nofloatlands,caverns
1901
1902 #    Y of mountain density gradient zero level. Used to shift mountains vertically.
1903 #    type: int
1904 # mgv7_mount_zero_level = 0
1905
1906 #    Controls width of tunnels, a smaller value creates wider tunnels.
1907 #    type: float
1908 # mgv7_cave_width = 0.09
1909
1910 #    Y of upper limit of large caves.
1911 #    type: int
1912 # mgv7_large_cave_depth = -33
1913
1914 #    Y of upper limit of lava in large caves.
1915 #    type: int
1916 # mgv7_lava_depth = -256
1917
1918 #    Controls the density of floatland mountain terrain.
1919 #    Is an offset added to the 'np_mountain' noise value.
1920 #    type: float
1921 # mgv7_float_mount_density = 0.6
1922
1923 #    Typical maximum height, above and below midpoint, of floatland mountain terrain.
1924 #    type: float
1925 # mgv7_float_mount_height = 128.0
1926
1927 #    Y-level of floatland midpoint and lake surface.
1928 #    type: int
1929 # mgv7_floatland_level = 1280
1930
1931 #    Y-level to which floatland shadows extend.
1932 #    type: int
1933 # mgv7_shadow_limit = 1024
1934
1935 #    Y-level of cavern upper limit.
1936 #    type: int
1937 # mgv7_cavern_limit = -256
1938
1939 #    Y-distance over which caverns expand to full size.
1940 #    type: int
1941 # mgv7_cavern_taper = 256
1942
1943 #    Defines full size of caverns, smaller values create larger caverns.
1944 #    type: float
1945 # mgv7_cavern_threshold = 0.7
1946
1947 ### Noises
1948
1949 #    Y-level of higher (cliff-top) terrain.
1950 #    type: noise_params_2d
1951 # mgv7_np_terrain_base = {
1952 #    offset      = 4,
1953 #    scale       = 70,
1954 #    spread      = (600, 600, 600),
1955 #    seed        = 82341,
1956 #    octaves     = 5,
1957 #    persistence = 0.6,
1958 #    lacunarity  = 2.0,
1959 #    flags       = "eased"
1960 # }
1961
1962 #    Y-level of lower terrain and lakebeds.
1963 #    type: noise_params_2d
1964 # mgv7_np_terrain_alt = {
1965 #    offset      = 4,
1966 #    scale       = 25,
1967 #    spread      = (600, 600, 600),
1968 #    seed        = 5934,
1969 #    octaves     = 5,
1970 #    persistence = 0.6,
1971 #    lacunarity  = 2.0,
1972 #    flags       = "eased"
1973 # }
1974
1975 #    Varies roughness of terrain.
1976 #    Defines the 'persistence' value for terrain_base and terrain_alt noises.
1977 #    type: noise_params_2d
1978 # mgv7_np_terrain_persist = {
1979 #    offset      = 0.6,
1980 #    scale       = 0.1,
1981 #    spread      = (2000, 2000, 2000),
1982 #    seed        = 539,
1983 #    octaves     = 3,
1984 #    persistence = 0.6,
1985 #    lacunarity  = 2.0,
1986 #    flags       = "eased"
1987 # }
1988
1989 #    Defines areas of higher (cliff-top) terrain and affects steepness of cliffs.
1990 #    type: noise_params_2d
1991 # mgv7_np_height_select = {
1992 #    offset      = -8,
1993 #    scale       = 16,
1994 #    spread      = (500, 500, 500),
1995 #    seed        = 4213,
1996 #    octaves     = 6,
1997 #    persistence = 0.7,
1998 #    lacunarity  = 2.0,
1999 #    flags       = "eased"
2000 # }
2001
2002 #    Variation of biome filler depth.
2003 #    type: noise_params_2d
2004 # mgv7_np_filler_depth = {
2005 #    offset      = 0,
2006 #    scale       = 1.2,
2007 #    spread      = (150, 150, 150),
2008 #    seed        = 261,
2009 #    octaves     = 3,
2010 #    persistence = 0.7,
2011 #    lacunarity  = 2.0,
2012 #    flags       = "eased"
2013 # }
2014
2015 #    Variation of maximum mountain height (in nodes).
2016 #    type: noise_params_2d
2017 # mgv7_np_mount_height = {
2018 #    offset      = 256,
2019 #    scale       = 112,
2020 #    spread      = (1000, 1000, 1000),
2021 #    seed        = 72449,
2022 #    octaves     = 3,
2023 #    persistence = 0.6,
2024 #    lacunarity  = 2.0,
2025 #    flags       = "eased"
2026 # }
2027
2028 #    Defines large-scale river channel structure.
2029 #    type: noise_params_2d
2030 # mgv7_np_ridge_uwater = {
2031 #    offset      = 0,
2032 #    scale       = 1,
2033 #    spread      = (1000, 1000, 1000),
2034 #    seed        = 85039,
2035 #    octaves     = 5,
2036 #    persistence = 0.6,
2037 #    lacunarity  = 2.0,
2038 #    flags       = "eased"
2039 # }
2040
2041 #    Defines areas of floatland smooth terrain.
2042 #    Smooth floatlands occur when noise > 0.
2043 #    type: noise_params_2d
2044 # mgv7_np_floatland_base = {
2045 #    offset      = -0.6,
2046 #    scale       = 1.5,
2047 #    spread      = (600, 600, 600),
2048 #    seed        = 114,
2049 #    octaves     = 5,
2050 #    persistence = 0.6,
2051 #    lacunarity  = 2.0,
2052 #    flags       = "eased"
2053 # }
2054
2055 #    Variation of hill height and lake depth on floatland smooth terrain.
2056 #    type: noise_params_2d
2057 # mgv7_np_float_base_height = {
2058 #    offset      = 48,
2059 #    scale       = 24,
2060 #    spread      = (300, 300, 300),
2061 #    seed        = 907,
2062 #    octaves     = 4,
2063 #    persistence = 0.7,
2064 #    lacunarity  = 2.0,
2065 #    flags       = "eased"
2066 # }
2067
2068 #    3D noise defining mountain structure and height.
2069 #    Also defines structure of floatland mountain terrain.
2070 #    type: noise_params_3d
2071 # mgv7_np_mountain = {
2072 #    offset      = -0.6,
2073 #    scale       = 1,
2074 #    spread      = (250, 350, 250),
2075 #    seed        = 5333,
2076 #    octaves     = 5,
2077 #    persistence = 0.63,
2078 #    lacunarity  = 2.0,
2079 #    flags       = ""
2080 # }
2081
2082 #    3D noise defining structure of river canyon walls.
2083 #    type: noise_params_3d
2084 # mgv7_np_ridge = {
2085 #    offset      = 0,
2086 #    scale       = 1,
2087 #    spread      = (100, 100, 100),
2088 #    seed        = 6467,
2089 #    octaves     = 4,
2090 #    persistence = 0.75,
2091 #    lacunarity  = 2.0,
2092 #    flags       = ""
2093 # }
2094
2095 #    3D noise defining giant caverns.
2096 #    type: noise_params_3d
2097 # mgv7_np_cavern = {
2098 #    offset      = 0,
2099 #    scale       = 1,
2100 #    spread      = (384, 128, 384),
2101 #    seed        = 723,
2102 #    octaves     = 5,
2103 #    persistence = 0.63,
2104 #    lacunarity  = 2.0,
2105 #    flags       = ""
2106 # }
2107
2108 #    First of 2 3D noises that together define tunnels.
2109 #    type: noise_params_3d
2110 # mgv7_np_cave1 = {
2111 #    offset      = 0,
2112 #    scale       = 12,
2113 #    spread      = (61, 61, 61),
2114 #    seed        = 52534,
2115 #    octaves     = 3,
2116 #    persistence = 0.5,
2117 #    lacunarity  = 2.0,
2118 #    flags       = ""
2119 # }
2120
2121 #    Second of 2 3D noises that together define tunnels.
2122 #    type: noise_params_3d
2123 # mgv7_np_cave2 = {
2124 #    offset      = 0,
2125 #    scale       = 12,
2126 #    spread      = (67, 67, 67),
2127 #    seed        = 10325,
2128 #    octaves     = 3,
2129 #    persistence = 0.5,
2130 #    lacunarity  = 2.0,
2131 #    flags       = ""
2132 # }
2133
2134 ## Mapgen Carpathian
2135
2136 #    Map generation attributes specific to Mapgen Carpathian.
2137 #    Flags that are not enabled are not modified from the default.
2138 #    Flags starting with 'no' are used to explicitly disable them.
2139 #    type: flags possible values: caverns, nocaverns
2140 # mgcarpathian_spflags = caverns
2141
2142 #    Controls width of tunnels, a smaller value creates wider tunnels.
2143 #    type: float
2144 # mgcarpathian_cave_width = 0.09
2145
2146 #    Y of upper limit of large caves.
2147 #    type: int
2148 # mgcarpathian_large_cave_depth = -33
2149
2150 #    Y of upper limit of lava in large caves.
2151 #    type: int
2152 # mgcarpathian_lava_depth = -256
2153
2154 #    Y-level of cavern upper limit.
2155 #    type: int
2156 # mgcarpathian_cavern_limit = -256
2157
2158 #    Y-distance over which caverns expand to full size.
2159 #    type: int
2160 # mgcarpathian_cavern_taper = 256
2161
2162 #    Defines full size of caverns, smaller values create larger caverns.
2163 #    type: float
2164 # mgcarpathian_cavern_threshold = 0.7
2165
2166 ### Noises
2167
2168 #    2D noise that defines the base ground level.
2169 #    type: noise_params_2d
2170 # mgcarpathian_np_base = {
2171 #    offset      = 12,
2172 #    scale       = 1,
2173 #    spread      = (2557, 2557, 2557),
2174 #    seed        = 6538,
2175 #    octaves     = 4,
2176 #    persistence = 0.8,
2177 #    lacunarity  = 0.5,
2178 #    flags       = "eased"
2179 # }
2180
2181 #    Variation of biome filler depth.
2182 #    type: noise_params_2d
2183 # mgcarpathian_np_filler_depth = {
2184 #    offset      = 0,
2185 #    scale       = 1,
2186 #    spread      = (128, 128, 128),
2187 #    seed        = 261,
2188 #    octaves     = 3,
2189 #    persistence = 0.7,
2190 #    lacunarity  = 2.0,
2191 #    flags       = "eased"
2192 # }
2193
2194 #    First of 4 2D noises that together define hill/mountain range height.
2195 #    type: noise_params_2d
2196 # mgcarpathian_np_height1 = {
2197 #    offset      = 0,
2198 #    scale       = 5,
2199 #    spread      = (251, 251, 251),
2200 #    seed        = 9613,
2201 #    octaves     = 5,
2202 #    persistence = 0.5,
2203 #    lacunarity  = 2.0,
2204 #    flags       = "eased"
2205 # }
2206
2207 #    Second of 4 2D noises that together define hill/mountain range height.
2208 #    type: noise_params_2d
2209 # mgcarpathian_np_height2 = {
2210 #    offset      = 0,
2211 #    scale       = 5,
2212 #    spread      = (383, 383, 383),
2213 #    seed        = 1949,
2214 #    octaves     = 5,
2215 #    persistence = 0.5,
2216 #    lacunarity  = 2.0,
2217 #    flags       = "eased"
2218 # }
2219
2220 #    Third of 4 2D noises that together define hill/mountain range height.
2221 #    type: noise_params_2d
2222 # mgcarpathian_np_height3 = {
2223 #    offset      = 0,
2224 #    scale       = 5,
2225 #    spread      = (509, 509, 509),
2226 #    seed        = 3211,
2227 #    octaves     = 5,
2228 #    persistence = 0.5,
2229 #    lacunarity  = 2.0,
2230 #    flags       = "eased"
2231 # }
2232
2233 #    Fourth of 4 2D noises that together define hill/mountain range height.
2234 #    type: noise_params_2d
2235 # mgcarpathian_np_height4 = {
2236 #    offset      = 0,
2237 #    scale       = 5,
2238 #    spread      = (631, 631, 631),
2239 #    seed        = 1583,
2240 #    octaves     = 5,
2241 #    persistence = 0.5,
2242 #    lacunarity  = 2.0,
2243 #    flags       = "eased"
2244 # }
2245
2246 #    2D noise that controls the size/occurance of rolling hills.
2247 #    type: noise_params_2d
2248 # mgcarpathian_np_hills_terrain = {
2249 #    offset      = 1,
2250 #    scale       = 1,
2251 #    spread      = (1301, 1301, 1301),
2252 #    seed        = 1692,
2253 #    octaves     = 3,
2254 #    persistence = 0.5,
2255 #    lacunarity  = 2.0,
2256 #    flags       = "eased"
2257 # }
2258
2259 #    2D noise that controls the size/occurance of ridged mountain ranges.
2260 #    type: noise_params_2d
2261 # mgcarpathian_np_ridge_terrain = {
2262 #    offset      = 1,
2263 #    scale       = 1,
2264 #    spread      = (1889, 1889, 1889),
2265 #    seed        = 3568,
2266 #    octaves     = 3,
2267 #    persistence = 0.5,
2268 #    lacunarity  = 2.0,
2269 #    flags       = "eased"
2270 # }
2271
2272 #    2D noise that controls the size/occurance of step mountain ranges.
2273 #    type: noise_params_2d
2274 # mgcarpathian_np_step_terrain = {
2275 #    offset      = 1,
2276 #    scale       = 1,
2277 #    spread      = (1889, 1889, 1889),
2278 #    seed        = 4157,
2279 #    octaves     = 3,
2280 #    persistence = 0.5,
2281 #    lacunarity  = 2.0,
2282 #    flags       = "eased"
2283 # }
2284
2285 #    2D noise that controls the shape/size of rolling hills.
2286 #    type: noise_params_2d
2287 # mgcarpathian_np_hills = {
2288 #    offset      = 0,
2289 #    scale       = 3,
2290 #    spread      = (257, 257, 257),
2291 #    seed        = 6604,
2292 #    octaves     = 6,
2293 #    persistence = 0.5,
2294 #    lacunarity  = 2.0,
2295 #    flags       = "eased"
2296 # }
2297
2298 #    2D noise that controls the shape/size of ridged mountains.
2299 #    type: noise_params_2d
2300 # mgcarpathian_np_ridge_mnt = {
2301 #    offset      = 0,
2302 #    scale       = 12,
2303 #    spread      = (743, 743, 743),
2304 #    seed        = 5520,
2305 #    octaves     = 6,
2306 #    persistence = 0.7,
2307 #    lacunarity  = 2.0,
2308 #    flags       = "eased"
2309 # }
2310
2311 #    2D noise that controls the shape/size of step mountains.
2312 #    type: noise_params_2d
2313 # mgcarpathian_np_step_mnt = {
2314 #    offset      = 0,
2315 #    scale       = 8,
2316 #    spread      = (509, 509, 509),
2317 #    seed        = 2590,
2318 #    octaves     = 6,
2319 #    persistence = 0.6,
2320 #    lacunarity  = 2.0,
2321 #    flags       = "eased"
2322 # }
2323
2324 #    3D noise for mountain overhangs, cliffs, etc. Usually small variations.
2325 #    type: noise_params_3d
2326 # mgcarpathian_np_mnt_var = {
2327 #    offset      = 0,
2328 #    scale       = 1,
2329 #    spread      = (499, 499, 499),
2330 #    seed        = 2490,
2331 #    octaves     = 5,
2332 #    persistence = 0.55,
2333 #    lacunarity  = 2.0,
2334 #    flags       = ""
2335 # }
2336
2337 #    First of 2 3D noises that together define tunnels.
2338 #    type: noise_params_3d
2339 # mgcarpathian_np_cave1 = {
2340 #    offset      = 0,
2341 #    scale       = 12,
2342 #    spread      = (61, 61, 61),
2343 #    seed        = 52534,
2344 #    octaves     = 3,
2345 #    persistence = 0.5,
2346 #    lacunarity  = 2.0,
2347 #    flags       = ""
2348 # }
2349
2350 #    Second of 2 3D noises that together define tunnels.
2351 #    type: noise_params_3d
2352 # mgcarpathian_np_cave2 = {
2353 #    offset      = 0,
2354 #    scale       = 12,
2355 #    spread      = (67, 67, 67),
2356 #    seed        = 10325,
2357 #    octaves     = 3,
2358 #    persistence = 0.5,
2359 #    lacunarity  = 2.0,
2360 #    flags       = ""
2361 # }
2362
2363 #    3D noise defining giant caverns.
2364 #    type: noise_params_3d
2365 # mgcarpathian_np_cavern = {
2366 #    offset      = 0,
2367 #    scale       = 1,
2368 #    spread      = (384, 128, 384),
2369 #    seed        = 723,
2370 #    octaves     = 5,
2371 #    persistence = 0.63,
2372 #    lacunarity  = 2.0,
2373 #    flags       = ""
2374 # }
2375
2376 ## Mapgen Flat
2377
2378 #    Map generation attributes specific to Mapgen flat.
2379 #    Occasional lakes and hills can be added to the flat world.
2380 #    Flags that are not enabled are not modified from the default.
2381 #    Flags starting with 'no' are used to explicitly disable them.
2382 #    type: flags possible values: lakes, hills, nolakes, nohills
2383 # mgflat_spflags = nolakes,nohills
2384
2385 #    Y of flat ground.
2386 #    type: int
2387 # mgflat_ground_level = 8
2388
2389 #    Y of upper limit of large caves.
2390 #    type: int
2391 # mgflat_large_cave_depth = -33
2392
2393 #    Y of upper limit of lava in large caves.
2394 #    type: int
2395 # mgflat_lava_depth = -256
2396
2397 #    Controls width of tunnels, a smaller value creates wider tunnels.
2398 #    type: float
2399 # mgflat_cave_width = 0.09
2400
2401 #    Terrain noise threshold for lakes.
2402 #    Controls proportion of world area covered by lakes.
2403 #    Adjust towards 0.0 for a larger proportion.
2404 #    type: float
2405 # mgflat_lake_threshold = -0.45
2406
2407 #    Controls steepness/depth of lake depressions.
2408 #    type: float
2409 # mgflat_lake_steepness = 48.0
2410
2411 #    Terrain noise threshold for hills.
2412 #    Controls proportion of world area covered by hills.
2413 #    Adjust towards 0.0 for a larger proportion.
2414 #    type: float
2415 # mgflat_hill_threshold = 0.45
2416
2417 #    Controls steepness/height of hills.
2418 #    type: float
2419 # mgflat_hill_steepness = 64.0
2420
2421 ### Noises
2422
2423 #    Defines location and terrain of optional hills and lakes.
2424 #    type: noise_params_2d
2425 # mgflat_np_terrain = {
2426 #    offset      = 0,
2427 #    scale       = 1,
2428 #    spread      = (600, 600, 600),
2429 #    seed        = 7244,
2430 #    octaves     = 5,
2431 #    persistence = 0.6,
2432 #    lacunarity  = 2.0,
2433 #    flags       = "eased"
2434 # }
2435
2436 #    Variation of biome filler depth.
2437 #    type: noise_params_2d
2438 # mgflat_np_filler_depth = {
2439 #    offset      = 0,
2440 #    scale       = 1.2,
2441 #    spread      = (150, 150, 150),
2442 #    seed        = 261,
2443 #    octaves     = 3,
2444 #    persistence = 0.7,
2445 #    lacunarity  = 2.0,
2446 #    flags       = "eased"
2447 # }
2448
2449 #    First of 2 3D noises that together define tunnels.
2450 #    type: noise_params_3d
2451 # mgflat_np_cave1 = {
2452 #    offset      = 0,
2453 #    scale       = 12,
2454 #    spread      = (61, 61, 61),
2455 #    seed        = 52534,
2456 #    octaves     = 3,
2457 #    persistence = 0.5,
2458 #    lacunarity  = 2.0,
2459 #    flags       = ""
2460 # }
2461
2462 #    Second of 2 3D noises that together define tunnels.
2463 #    type: noise_params_3d
2464 # mgflat_np_cave2 = {
2465 #    offset      = 0,
2466 #    scale       = 12,
2467 #    spread      = (67, 67, 67),
2468 #    seed        = 10325,
2469 #    octaves     = 3,
2470 #    persistence = 0.5,
2471 #    lacunarity  = 2.0,
2472 #    flags       = ""
2473 # }
2474
2475 ## Mapgen Fractal
2476
2477 #    Controls width of tunnels, a smaller value creates wider tunnels.
2478 #    type: float
2479 # mgfractal_cave_width = 0.09
2480
2481 #    Y of upper limit of large caves.
2482 #    type: int
2483 # mgfractal_large_cave_depth = -33
2484
2485 #    Y of upper limit of lava in large caves.
2486 #    type: int
2487 # mgfractal_lava_depth = -256
2488
2489 #    Choice of 18 fractals from 9 formulas.
2490 #    1 = 4D "Roundy" mandelbrot set.
2491 #    2 = 4D "Roundy" julia set.
2492 #    3 = 4D "Squarry" mandelbrot set.
2493 #    4 = 4D "Squarry" julia set.
2494 #    5 = 4D "Mandy Cousin" mandelbrot set.
2495 #    6 = 4D "Mandy Cousin" julia set.
2496 #    7 = 4D "Variation" mandelbrot set.
2497 #    8 = 4D "Variation" julia set.
2498 #    9 = 3D "Mandelbrot/Mandelbar" mandelbrot set.
2499 #    10 = 3D "Mandelbrot/Mandelbar" julia set.
2500 #    11 = 3D "Christmas Tree" mandelbrot set.
2501 #    12 = 3D "Christmas Tree" julia set.
2502 #    13 = 3D "Mandelbulb" mandelbrot set.
2503 #    14 = 3D "Mandelbulb" julia set.
2504 #    15 = 3D "Cosine Mandelbulb" mandelbrot set.
2505 #    16 = 3D "Cosine Mandelbulb" julia set.
2506 #    17 = 4D "Mandelbulb" mandelbrot set.
2507 #    18 = 4D "Mandelbulb" julia set.
2508 #    type: int min: 1 max: 18
2509 # mgfractal_fractal = 1
2510
2511 #    Iterations of the recursive function.
2512 #    Controls the amount of fine detail.
2513 #    type: int
2514 # mgfractal_iterations = 11
2515
2516 #    Approximate (X,Y,Z) scale of fractal in nodes.
2517 #    type: v3f
2518 # mgfractal_scale = (4096.0, 1024.0, 4096.0)
2519
2520 #    (X,Y,Z) offset of fractal from world centre in units of 'scale'.
2521 #    Used to move a suitable spawn area of low land close to (0, 0).
2522 #    The default is suitable for mandelbrot sets, it needs to be edited for julia sets.
2523 #    Range roughly -2 to 2. Multiply by 'scale' for offset in nodes.
2524 #    type: v3f
2525 # mgfractal_offset = (1.79, 0.0, 0.0)
2526
2527 #    W co-ordinate of the generated 3D slice of a 4D fractal.
2528 #    Determines which 3D slice of the 4D shape is generated.
2529 #    Has no effect on 3D fractals.
2530 #    Range roughly -2 to 2.
2531 #    type: float
2532 # mgfractal_slice_w = 0.0
2533
2534 #    Julia set only: X component of hypercomplex constant determining julia shape.
2535 #    Range roughly -2 to 2.
2536 #    type: float
2537 # mgfractal_julia_x = 0.33
2538
2539 #    Julia set only: Y component of hypercomplex constant determining julia shape.
2540 #    Range roughly -2 to 2.
2541 #    type: float
2542 # mgfractal_julia_y = 0.33
2543
2544 #    Julia set only: Z component of hypercomplex constant determining julia shape.
2545 #    Range roughly -2 to 2.
2546 #    type: float
2547 # mgfractal_julia_z = 0.33
2548
2549 #    Julia set only: W component of hypercomplex constant determining julia shape.
2550 #    Has no effect on 3D fractals.
2551 #    Range roughly -2 to 2.
2552 #    type: float
2553 # mgfractal_julia_w = 0.33
2554
2555 ### Noises
2556
2557 #    Y-level of seabed.
2558 #    type: noise_params_2d
2559 # mgfractal_np_seabed = {
2560 #    offset      = -14,
2561 #    scale       = 9,
2562 #    spread      = (600, 600, 600),
2563 #    seed        = 41900,
2564 #    octaves     = 5,
2565 #    persistence = 0.6,
2566 #    lacunarity  = 2.0,
2567 #    flags       = "eased"
2568 # }
2569
2570 #    Variation of biome filler depth.
2571 #    type: noise_params_2d
2572 # mgfractal_np_filler_depth = {
2573 #    offset      = 0,
2574 #    scale       = 1.2,
2575 #    spread      = (150, 150, 150),
2576 #    seed        = 261,
2577 #    octaves     = 3,
2578 #    persistence = 0.7,
2579 #    lacunarity  = 2.0,
2580 #    flags       = "eased"
2581 # }
2582
2583 #    First of 2 3D noises that together define tunnels.
2584 #    type: noise_params_3d
2585 # mgfractal_np_cave1 = {
2586 #    offset      = 0,
2587 #    scale       = 12,
2588 #    spread      = (61, 61, 61),
2589 #    seed        = 52534,
2590 #    octaves     = 3,
2591 #    persistence = 0.5,
2592 #    lacunarity  = 2.0,
2593 #    flags       = ""
2594 # }
2595
2596 #    Second of 2 3D noises that together define tunnels.
2597 #    type: noise_params_3d
2598 # mgfractal_np_cave2 = {
2599 #    offset      = 0,
2600 #    scale       = 12,
2601 #    spread      = (67, 67, 67),
2602 #    seed        = 10325,
2603 #    octaves     = 3,
2604 #    persistence = 0.5,
2605 #    lacunarity  = 2.0,
2606 #    flags       = ""
2607 # }
2608
2609 ## Mapgen Valleys
2610
2611 #    Map generation attributes specific to Mapgen Valleys.
2612 #    'altitude_chill' makes higher elevations colder, which may cause biome issues.
2613 #    'humid_rivers' modifies the humidity around rivers and in areas where water would tend to pool,
2614 #    it may interfere with delicately adjusted biomes.
2615 #    Flags that are not enabled are not modified from the default.
2616 #    Flags starting with 'no' are used to explicitly disable them.
2617 #    type: flags possible values: altitude_chill, noaltitude_chill, humid_rivers, nohumid_rivers
2618 # mg_valleys_spflags = altitude_chill,humid_rivers
2619
2620 #    The altitude at which temperature drops by 20C
2621 #    type: int
2622 # mgvalleys_altitude_chill = 90
2623
2624 #    Depth below which you'll find large caves.
2625 #    type: int
2626 # mgvalleys_large_cave_depth = -33
2627
2628 #    Creates unpredictable lava features in caves.
2629 #    These can make mining difficult. Zero disables them. (0-10)
2630 #    type: int
2631 # mgvalleys_lava_features = 0
2632
2633 #    Depth below which you'll find massive caves.
2634 #    type: int
2635 # mgvalleys_massive_cave_depth = -256
2636
2637 #    How deep to make rivers
2638 #    type: int
2639 # mgvalleys_river_depth = 4
2640
2641 #    How wide to make rivers
2642 #    type: int
2643 # mgvalleys_river_size = 5
2644
2645 #    Creates unpredictable water features in caves.
2646 #    These can make mining difficult. Zero disables them. (0-10)
2647 #    type: int
2648 # mgvalleys_water_features = 0
2649
2650 #    Controls width of tunnels, a smaller value creates wider tunnels.
2651 #    type: float
2652 # mgvalleys_cave_width = 0.09
2653
2654 ### Noises
2655
2656 #    Caves and tunnels form at the intersection of the two noises
2657 #    type: noise_params_3d
2658 # mgvalleys_np_cave1 = {
2659 #    offset      = 0,
2660 #    scale       = 12,
2661 #    spread      = (61, 61, 61),
2662 #    seed        = 52534,
2663 #    octaves     = 3,
2664 #    persistence = 0.5,
2665 #    lacunarity  = 2.0,
2666 #    flags       = ""
2667 # }
2668
2669 #    Caves and tunnels form at the intersection of the two noises
2670 #    type: noise_params_3d
2671 # mgvalleys_np_cave2 = {
2672 #    offset      = 0,
2673 #    scale       = 12,
2674 #    spread      = (67, 67, 67),
2675 #    seed        = 10325,
2676 #    octaves     = 3,
2677 #    persistence = 0.5,
2678 #    lacunarity  = 2.0,
2679 #    flags       = ""
2680 # }
2681
2682 #    The depth of dirt or other filler
2683 #    type: noise_params_2d
2684 # mgvalleys_np_filler_depth = {
2685 #    offset      = 0,
2686 #    scale       = 1.2,
2687 #    spread      = (256, 256, 256),
2688 #    seed        = 1605,
2689 #    octaves     = 3,
2690 #    persistence = 0.5,
2691 #    lacunarity  = 2.0,
2692 #    flags       = "eased"
2693 # }
2694
2695 #    Massive caves form here.
2696 #    type: noise_params_3d
2697 # mgvalleys_np_massive_caves = {
2698 #    offset      = 0,
2699 #    scale       = 1,
2700 #    spread      = (768, 256, 768),
2701 #    seed        = 59033,
2702 #    octaves     = 6,
2703 #    persistence = 0.63,
2704 #    lacunarity  = 2.0,
2705 #    flags       = ""
2706 # }
2707
2708 #    River noise -- rivers occur close to zero
2709 #    type: noise_params_2d
2710 # mgvalleys_np_rivers = {
2711 #    offset      = 0,
2712 #    scale       = 1,
2713 #    spread      = (256, 256, 256),
2714 #    seed        = -6050,
2715 #    octaves     = 5,
2716 #    persistence = 0.6,
2717 #    lacunarity  = 2.0,
2718 #    flags       = "eased"
2719 # }
2720
2721 #    Base terrain height
2722 #    type: noise_params_2d
2723 # mgvalleys_np_terrain_height = {
2724 #    offset      = -10,
2725 #    scale       = 50,
2726 #    spread      = (1024, 1024, 1024),
2727 #    seed        = 5202,
2728 #    octaves     = 6,
2729 #    persistence = 0.4,
2730 #    lacunarity  = 2.0,
2731 #    flags       = "eased"
2732 # }
2733
2734 #    Raises terrain to make valleys around the rivers
2735 #    type: noise_params_2d
2736 # mgvalleys_np_valley_depth = {
2737 #    offset      = 5,
2738 #    scale       = 4,
2739 #    spread      = (512, 512, 512),
2740 #    seed        = -1914,
2741 #    octaves     = 1,
2742 #    persistence = 1.0,
2743 #    lacunarity  = 2.0,
2744 #    flags       = "eased"
2745 # }
2746
2747 #    Slope and fill work together to modify the heights
2748 #    type: noise_params_3d
2749 # mgvalleys_np_inter_valley_fill = {
2750 #    offset      = 0,
2751 #    scale       = 1,
2752 #    spread      = (256, 512, 256),
2753 #    seed        = 1993,
2754 #    octaves     = 6,
2755 #    persistence = 0.8,
2756 #    lacunarity  = 2.0,
2757 #    flags       = ""
2758 # }
2759
2760 #    Amplifies the valleys
2761 #    type: noise_params_2d
2762 # mgvalleys_np_valley_profile = {
2763 #    offset      = 0.6,
2764 #    scale       = 0.5,
2765 #    spread      = (512, 512, 512),
2766 #    seed        = 777,
2767 #    octaves     = 1,
2768 #    persistence = 1.0,
2769 #    lacunarity  = 2.0,
2770 #    flags       = "eased"
2771 # }
2772
2773 #    Slope and fill work together to modify the heights
2774 #    type: noise_params_2d
2775 # mgvalleys_np_inter_valley_slope = {
2776 #    offset      = 0.5,
2777 #    scale       = 0.5,
2778 #    spread      = (128, 128, 128),
2779 #    seed        = 746,
2780 #    octaves     = 1,
2781 #    persistence = 1.0,
2782 #    lacunarity  = 2.0,
2783 #    flags       = "eased"
2784 # }
2785
2786 ## Advanced
2787
2788 #    Size of chunks to be generated at once by mapgen, stated in mapblocks (16 nodes).
2789 #    type: int
2790 # chunksize = 5
2791
2792 #    Dump the mapgen debug infos.
2793 #    type: bool
2794 # enable_mapgen_debug_info = false
2795
2796 #    Maximum number of blocks that can be queued for loading.
2797 #    type: int
2798 # emergequeue_limit_total = 256
2799
2800 #    Maximum number of blocks to be queued that are to be loaded from file.
2801 #    Set to blank for an appropriate amount to be chosen automatically.
2802 #    type: int
2803 # emergequeue_limit_diskonly = 32
2804
2805 #    Maximum number of blocks to be queued that are to be generated.
2806 #    Set to blank for an appropriate amount to be chosen automatically.
2807 #    type: int
2808 # emergequeue_limit_generate = 32
2809
2810 #    Number of emerge threads to use. Make this field blank, or increase this number
2811 #    to use multiple threads. On multiprocessor systems, this will improve mapgen speed greatly
2812 #    at the cost of slightly buggy caves.
2813 #    type: int
2814 # num_emerge_threads = 1
2815