Fog: Make fraction of visible distance at which fog starts configurable
[oweals/minetest.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 # Client
17 #
18
19 ## Controls
20
21 #    If enabled, you can place blocks at the position (feet + eye level) where you stand.
22 #    This is helpful when working with nodeboxes in small areas.
23 #    type: bool
24 # enable_build_where_you_stand = false
25
26 #    Player is able to fly without being affected by gravity.
27 #    This requires the "fly" privilege on the server.
28 #    type: bool
29 # free_move = false
30
31 #    Fast movement (via use key).
32 #    This requires the "fast" privilege on the server.
33 #    type: bool
34 # fast_move = false
35
36 #    If enabled together with fly mode, player is able to fly through solid nodes.
37 #    This requires the "noclip" privilege on the server.
38 #    type: bool
39 # noclip = false
40
41 #    Smooths camera when looking around. Also called look or mouse smoothing.
42 #    Useful for recording videos.
43 #    type: bool
44 # cinematic = false
45
46 #    Smooths rotation of camera. 0 to disable.
47 #    type: float min: 0 max: 0.99
48 # camera_smoothing = 0.0
49
50 #    Smooths rotation of camera in cinematic mode. 0 to disable.
51 #    type: float min: 0 max: 0.99
52 # cinematic_camera_smoothing = 0.7
53
54 #    Invert vertical mouse movement.
55 #    type: bool
56 # invert_mouse = false
57
58 #    Mouse sensitivity multiplier.
59 #    type: float
60 # mouse_sensitivity = 0.2
61
62 #    If enabled, "use" key instead of "sneak" key is used for climbing down and descending.
63 #    type: bool
64 # aux1_descends = false
65
66 #    Double-tapping the jump key toggles fly mode.
67 #    type: bool
68 # doubletap_jump = false
69
70 #    If disabled "use" key is used to fly fast if both fly and fast mode are enabled.
71 #    type: bool
72 # always_fly_fast = true
73
74 #    The time in seconds it takes between repeated right clicks when holding the right mouse button.
75 #    type: float
76 # repeat_rightclick_time = 0.25
77
78 #    Enable random user input (only used for testing).
79 #    type: bool
80 # random_input = false
81
82 #    Continuous forward movement (only used for testing).
83 #    type: bool
84 # continuous_forward = false
85
86 #    Enable Joysticks
87 #    type: bool
88 # enable_joysticks = false
89
90 #    The time in seconds it takes between repeated events
91 #    when holding down a joystick button combination.
92 #    type: float
93 # repeat_joystick_button_time = 0.17
94
95 #    The sensitivity of the joystick axes for moving the
96 #    ingame view frustum around.
97 #    type: float
98 # joystick_frustum_sensitivity = 170
99
100 #    Key for moving the player forward.
101 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
102 #    type: key
103 # keymap_forward = KEY_KEY_W
104
105 #    Key for moving the player backward.
106 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
107 #    type: key
108 # keymap_backward = KEY_KEY_S
109
110 #    Key for moving the player left.
111 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
112 #    type: key
113 # keymap_left = KEY_KEY_A
114
115 #    Key for moving the player right.
116 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
117 #    type: key
118 # keymap_right = KEY_KEY_D
119
120 #    Key for jumping.
121 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
122 #    type: key
123 # keymap_jump = KEY_SPACE
124
125 #    Key for sneaking.
126 #    Also used for climbing down and descending in water if aux1_descends is disabled.
127 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
128 #    type: key
129 # keymap_sneak = KEY_LSHIFT
130
131 #    Key for opening the inventory.
132 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
133 #    type: key
134 # keymap_inventory = KEY_KEY_I
135
136 #    Key for moving fast in fast mode.
137 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
138 #    type: key
139 # keymap_special1 = KEY_KEY_E
140
141 #    Key for opening the chat window.
142 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
143 #    type: key
144 # keymap_chat = KEY_KEY_T
145
146 #    Key for opening the chat window to type commands.
147 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
148 #    type: key
149 # keymap_cmd = /
150
151 #    Key for opening the chat console.
152 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
153 #    type: key
154 # keyman_console = KEY_F10
155
156 #    Key for toggling unlimited view range.
157 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
158 #    type: key
159 # keymap_rangeselect = KEY_KEY_R
160
161 #    Key for toggling flying.
162 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
163 #    type: key
164 # keymap_freemove = KEY_KEY_K
165
166 #    Key for toggling fast mode.
167 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
168 #    type: key
169 # keymap_fastmove = KEY_KEY_J
170
171 #    Key for toggling noclip mode.
172 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
173 #    type: key
174 # keymap_noclip = KEY_KEY_H
175
176 #    Key for toggling autorun.
177 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
178 #    type: key
179 # keymap_autorun =
180
181 #    Key for toggling cinematic mode.
182 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
183 #    type: key
184 # keymap_cinematic =
185
186 #    Key for toggling display of minimap.
187 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
188 #    type: key
189 # keymap_minimap = KEY_F9
190
191 #    Key for taking screenshots.
192 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
193 #    type: key
194 # keymap_screenshot = KEY_F12
195
196 #    Key for dropping the currently selected item.
197 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
198 #    type: key
199 # keymap_drop = KEY_KEY_Q
200
201 #    Key for toggling the display of the HUD.
202 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
203 #    type: key
204 # keymap_toggle_hud = KEY_F1
205
206 #    Key for toggling the display of the chat.
207 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
208 #    type: key
209 # keymap_toggle_chat = KEY_F2
210
211 #    Key for toggling the display of the fog.
212 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
213 #    type: key
214 # keymap_toggle_force_fog_off = KEY_F3
215
216 #    Key for toggling the camera update. Only used for development
217 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
218 #    type: key
219 # keymap_toggle_update_camera =
220
221 #    Key for toggling the display of debug info.
222 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
223 #    type: key
224 # keymap_toggle_debug = KEY_F5
225
226 #    Key for toggling the display of the profiler. Used for development.
227 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
228 #    type: key
229 # keymap_toggle_profiler = KEY_F6
230
231 #    Key for switching between first- and third-person camera.
232 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
233 #    type: key
234 # keymap_camera_mode = KEY_F7
235
236 #    Key for increasing the viewing range.
237 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
238 #    type: key
239 # keymap_increase_viewing_range_min = +
240
241 #    Key for decreasing the viewing range.
242 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
243 #    type: key
244 # keymap_decrease_viewing_range_min = -
245
246 #    Key for printing debug stacks. Used for development.
247 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
248 #    type: key
249 # keymap_print_debug_stacks = KEY_KEY_P
250
251 ## Network
252
253 #    Address to connect to.
254 #    Leave this blank to start a local server.
255 #    Note that the address field in the main menu overrides this setting.
256 #    type: string
257 # address =
258
259 #    Port to connect to (UDP).
260 #    Note that the port field in the main menu overrides this setting.
261 #    type: int min: 1 max: 65535
262 # remote_port = 30000
263
264 #    Whether to support older servers before protocol version 25.
265 #    Enable if you want to connect to 0.4.12 servers and before.
266 #    Servers starting with 0.4.13 will work, 0.4.12-dev servers may work.
267 #    Disabling this option will protect your password better.
268 #    type: bool
269 # send_pre_v25_init = false
270
271 #    Save the map received by the client on disk.
272 #    type: bool
273 # enable_local_map_saving = false
274
275 #    Show entity selection boxes
276 #    type: bool
277 # show_entity_selectionbox = true
278
279 #    Enable usage of remote media server (if provided by server).
280 #    Remote servers offer a significantly faster way to download media (e.g. textures)
281 #    when connecting to the server.
282 #    type: bool
283 # enable_remote_media_server = true
284
285 #    URL to the server list displayed in the Multiplayer Tab.
286 #    type: string
287 # serverlist_url = servers.minetest.net
288
289 #    File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab.
290 #    type: string
291 # serverlist_file = favoriteservers.txt
292
293 ## Graphics
294
295 ### In-Game
296
297 #### Basic
298
299 #    Enable VBO
300 #    type: bool
301 # enable_vbo = true
302
303 #    Whether to fog out the end of the visible area.
304 #    type: bool
305 # enable_fog = true
306
307 #    Leaves style:
308 #    -   Fancy:  all faces visible
309 #    -   Simple: only outer faces, if defined special_tiles are used
310 #    -   Opaque: disable transparency
311 #    type: enum values: fancy, simple, opaque
312 # leaves_style = fancy
313
314 #    Connects glass if supported by node.
315 #    type: bool
316 # connected_glass = false
317
318 #    Enable smooth lighting with simple ambient occlusion.
319 #    Disable for speed or for different looks.
320 #    type: bool
321 # smooth_lighting = true
322
323 #    Clouds are a client side effect.
324 #    type: bool
325 # enable_clouds = true
326
327 #    Use 3D cloud look instead of flat.
328 #    type: bool
329 # enable_3d_clouds = true
330
331 #    Method used to highlight selected object.
332 #    type: enum values: box, halo
333 # node_highlighting = box
334
335 #### Filtering
336
337 #    Use mip mapping to scale textures. May slightly increase performance.
338 #    type: bool
339 # mip_map = false
340
341 #    Use anisotropic filtering when viewing at textures from an angle.
342 #    type: bool
343 # anisotropic_filter = false
344
345 #    Use bilinear filtering when scaling textures.
346 #    type: bool
347 # bilinear_filter = false
348
349 #    Use trilinear filtering when scaling textures.
350 #    type: bool
351 # trilinear_filter = false
352
353 #    Filtered textures can blend RGB values with fully-transparent neighbors,
354 #    which PNG optimizers usually discard, sometimes resulting in a dark or
355 #    light edge to transparent textures.  Apply this filter to clean that up
356 #    at texture load time.
357 #    type: bool
358 # texture_clean_transparent = false
359
360 #    When using bilinear/trilinear/anisotropic filters, low-resolution textures
361 #    can be blurred, so automatically upscale them with nearest-neighbor
362 #    interpolation to preserve crisp pixels.  This sets the minimum texture size
363 #    for the upscaled textures; higher values look sharper, but require more
364 #    memory.  Powers of 2 are recommended.  Setting this higher than 1 may not
365 #    have a visible effect unless bilinear/trilinear/anisotropic filtering is
366 #    enabled.
367 #    type: int
368 # texture_min_size = 64
369
370 #    Experimental option, might cause visible spaces between blocks
371 #    when set to higher number than 0.
372 #    type: enum values: 0, 1, 2, 4, 8, 16
373 # fsaa = 0
374
375 #### Shaders
376
377 #    Shaders allow advanced visual effects and may increase performance on some video cards.
378 #    Thy only work with the OpenGL video backend.
379 #    type: bool
380 # enable_shaders = true
381
382 ##### Tone Mapping
383
384 #    Enables filmic tone mapping
385 #    type: bool
386 # tone_mapping = false
387
388 ##### Bumpmapping
389
390 #    Enables bumpmapping for textures. Normalmaps need to be supplied by the texture pack
391 #    or need to be auto-generated.
392 #    Requires shaders to be enabled.
393 #    type: bool
394 # enable_bumpmapping = false
395
396 #    Enables on the fly normalmap generation (Emboss effect).
397 #    Requires bumpmapping to be enabled.
398 #    type: bool
399 # generate_normalmaps = false
400
401 #    Strength of generated normalmaps.
402 #    type: float
403 # normalmaps_strength = 0.6
404
405 #    Defines sampling step of texture.
406 #    A higher value results in smoother normal maps.
407 #    type: int min: 0 max: 2
408 # normalmaps_smooth = 0
409
410 ##### Parallax Occlusion
411
412 #    Enables parallax occlusion mapping.
413 #    Requires shaders to be enabled.
414 #    type: bool
415 # enable_parallax_occlusion = false
416
417 #    0 = parallax occlusion with slope information (faster).
418 #    1 = relief mapping (slower, more accurate).
419 #    type: int min: 0 max: 1
420 # parallax_occlusion_mode = 1
421
422 #    Strength of parallax.
423 #    type: float
424 # 3d_parallax_strength = 0.025
425
426 #    Number of parallax occlusion iterations.
427 #    type: int
428 # parallax_occlusion_iterations = 4
429
430 #    Overall scale of parallax occlusion effect.
431 #    type: float
432 # parallax_occlusion_scale = 0.08
433
434 #    Overall bias of parallax occlusion effect, usually scale/2.
435 #    type: float
436 # parallax_occlusion_bias = 0.04
437
438 ##### Waving Nodes
439
440 #    Set to true enables waving water.
441 #    Requires shaders to be enabled.
442 #    type: bool
443 # enable_waving_water = false
444
445 #    type: float
446 # water_wave_height = 1.0
447
448 #    type: float
449 # water_wave_length = 20.0
450
451 #    type: float
452 # water_wave_speed = 5.0
453
454 #    Set to true enables waving leaves.
455 #    Requires shaders to be enabled.
456 #    type: bool
457 # enable_waving_leaves = false
458
459 #    Set to true enables waving plants.
460 #    Requires shaders to be enabled.
461 #    type: bool
462 # enable_waving_plants = false
463
464 #### Advanced
465
466 #    If FPS would go higher than this, limit it by sleeping
467 #    to not waste CPU power for no benefit.
468 #    type: int
469 # fps_max = 60
470
471 #    Maximum FPS when game is paused.
472 #    type: int
473 # pause_fps_max = 20
474
475 #    View distance in nodes.
476 #    Min = 20
477 #    type: int
478 # viewing_range = 100
479
480 #    Width component of the initial window size.
481 #    type: int
482 # screenW = 800
483
484 #    Height component of the initial window size.
485 #    type: int
486 # screenH = 600
487
488 #    Fullscreen mode.
489 #    type: bool
490 # fullscreen = false
491
492 #    Bits per pixel (aka color depth) in fullscreen mode.
493 #    type: int
494 # fullscreen_bpp = 24
495
496 #    Vertical screen synchronization.
497 #    type: bool
498 # vsync = false
499
500 #    Field of view in degrees.
501 #    type: int min: 30 max: 160
502 # fov = 72
503
504 #    Field of view while zooming in degrees.
505 #    This requires the "zoom" privilege on the server.
506 #    type: int min: 15 max: 160
507 # zoom_fov = 15
508
509 #    Adjust the gamma encoding for the light tables. Lower numbers are brighter.
510 #    This setting is for the client only and is ignored by the server.
511 #    type: float min: 1 max: 3
512 # display_gamma = 1.8
513
514 #    Path to texture directory. All textures are first searched from here.
515 #    type: path
516 # texture_path =
517
518 #    The rendering back-end for Irrlicht.
519 #    type: enum values: null, software, burningsvideo, direct3d8, direct3d9, opengl
520 # video_driver = opengl
521
522 #    Height on which clouds are appearing.
523 #    type: int
524 # cloud_height = 120
525
526 #    Radius of cloud area stated in number of 64 node cloud squares.
527 #    Values larger than 26 will start to produce sharp cutoffs at cloud area corners.
528 #    type: int
529 # cloud_radius = 12
530
531 #    Multiplier for view bobbing.
532 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
533 #    type: float
534 # view_bobbing_amount = 1.0
535
536 #    Multiplier for fall bobbing.
537 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
538 #    type: float
539 # fall_bobbing_amount = 0.0
540
541 #    3D support.
542 #    Currently supported:
543 #    -    none: no 3d output.
544 #    -    anaglyph: cyan/magenta color 3d.
545 #    -    interlaced: odd/even line based polarisation screen support.
546 #    -    topbottom: split screen top/bottom.
547 #    -    sidebyside: split screen side by side.
548 #    -    pageflip: quadbuffer based 3d.
549 #    type: enum values: none, anaglyph, interlaced, topbottom, sidebyside, pageflip
550 # 3d_mode = none
551
552 #    In-game chat console background color (R,G,B).
553 #    type: string
554 # console_color = (0,0,0)
555
556 #    In-game chat console background alpha (opaqueness, between 0 and 255).
557 #    type: int min: 0 max: 255
558 # console_alpha = 200
559
560 #    Selection box border color (R,G,B).
561 #    type: string
562 # selectionbox_color = (0,0,0)
563
564 #    Width of the selectionbox's lines around nodes.
565 #    type: int min: 1 max: 5
566 # selectionbox_width = 2
567
568 #    Crosshair color (R,G,B).
569 #    type: string
570 # crosshair_color = (255,255,255)
571
572 #    Crosshair alpha (opaqueness, between 0 and 255).
573 #    type: int min: 0 max: 255
574 # crosshair_alpha = 255
575
576 #    Whether node texture animations should be desynchronized per mapblock.
577 #    type: bool
578 # desynchronize_mapblock_texture_animation = true
579
580 #    Maximum proportion of current window to be used for hotbar.
581 #    Useful if there's something to be displayed right or left of hotbar.
582 #    type: float
583 # hud_hotbar_max_width = 1.0
584
585 #    Enables caching of facedir rotated meshes.
586 #    type: bool
587 # enable_mesh_cache = false
588
589 #    Enables minimap.
590 #    type: bool
591 # enable_minimap = true
592
593 #    Shape of the minimap. Enabled = round, disabled = square.
594 #    type: bool
595 # minimap_shape_round = true
596
597 #    True = 256
598 #    False = 128
599 #    Useable to make minimap smoother on slower machines.
600 #    type: bool
601 # minimap_double_scan_height = true
602
603 #    Make fog and sky colors depend on daytime (dawn/sunset) and view direction.
604 #    type: bool
605 # directional_colored_fog = true
606
607 #    The strength (darkness) of node ambient-occlusion shading.
608 #    Lower is darker, Higher is lighter. The valid range of values for this
609 #    setting is 0.25 to 4.0 inclusive. If the value is out of range it will be
610 #    set to the nearest valid value.
611 #    type: float min: 0.25 max: 4
612 # ambient_occlusion_gamma = 2.2
613
614 #    Enables animation of inventory items.
615 #    type: bool
616 # inventory_items_animations = false
617
618 #    Fraction of the visible distance at which fog starts to be rendered
619 #    Range 0 - 0.99
620 # fog_start = 0.4
621
622 ### Menus
623
624 #    Use a cloud animation for the main menu background.
625 #    type: bool
626 # menu_clouds = true
627
628 #    Scale gui by a user specified value.
629 #    Use a nearest-neighbor-anti-alias filter to scale the GUI.
630 #    This will smooth over some of the rough edges, and blend
631 #    pixels when scaling down, at the cost of blurring some
632 #    edge pixels when images are scaled by non-integer sizes.
633 #    type: float
634 # gui_scaling = 1.0
635
636 #    When gui_scaling_filter is true, all GUI images need to be
637 #    filtered in software, but some images are generated directly
638 #    to hardware (e.g. render-to-texture for nodes in inventory).
639 #    type: bool
640 # gui_scaling_filter = false
641
642 #    When gui_scaling_filter_txr2img is true, copy those images
643 #    from hardware to software for scaling.  When false, fall back
644 #    to the old scaling method, for video drivers that don't
645 #    properly support downloading textures back from hardware.
646 #    type: bool
647 # gui_scaling_filter_txr2img = true
648
649 #    Delay showing tooltips, stated in milliseconds.
650 #    type: int
651 # tooltip_show_delay = 400
652
653 #    Whether freetype fonts are used, requires freetype support to be compiled in.
654 #    type: bool
655 # freetype = true
656
657 #    Path to TrueTypeFont or bitmap.
658 #    type: path
659 # font_path = fonts/liberationsans.ttf
660
661 #    type: int
662 # font_size = 16
663
664 #    Font shadow offset, if 0 then shadow will not be drawn.
665 #    type: int
666 # font_shadow = 1
667
668 #    Font shadow alpha (opaqueness, between 0 and 255).
669 #    type: int min: 0 max: 255
670 # font_shadow_alpha = 127
671
672 #    type: path
673 # mono_font_path = fonts/liberationmono.ttf
674
675 #    type: int
676 # mono_font_size = 15
677
678 #    This font will be used for certain languages.
679 #    type: path
680 # fallback_font_path = fonts/DroidSansFallbackFull.ttf
681
682 #    type: int
683 # fallback_font_size = 15
684
685 #    type: int
686 # fallback_font_shadow = 1
687
688 #    type: int min: 0 max: 255
689 # fallback_font_shadow_alpha = 128
690
691 #    Path to save screenshots at.
692 #    type: path
693 # screenshot_path =
694
695 #    Format of screenshots.
696 #    type: enum values: png, jpg, bmp, pcx, ppm, tga
697 # screenshot_format = png
698
699 #    Screenshot quality. Only used for JPEG format.
700 #    1 means worst quality; 100 means best quality.
701 #    Use 0 for default quality.
702 #    type: int min: 0 max: 100
703 # screenshot_quality = 0
704
705 ### Advanced
706
707 #    Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k screens.
708 #    type: int
709 # screen_dpi = 72
710
711 ## Sound
712
713 #    type: bool
714 # enable_sound = true
715
716 #    type: float min: 0 max: 1
717 # sound_volume = 0.7
718
719 ## Advanced
720
721 #    Timeout for client to remove unused map data from memory.
722 #    type: int
723 # client_unload_unused_data_timeout = 600
724
725 #    Maximum number of mapblocks for client to be kept in memory.
726 #    Set to -1 for unlimited amount.
727 #    type: int
728 # client_mapblock_limit = 5000
729
730 #    Whether to show the client debug info (has the same effect as hitting F5).
731 #    type: bool
732 # show_debug = false
733
734 #
735 # Server / Singleplayer
736 #
737
738 #    Name of the server, to be displayed when players join and in the serverlist.
739 #    type: string
740 # server_name = Minetest server
741
742 #    Description of server, to be displayed when players join and in the serverlist.
743 #    type: string
744 # server_description = mine here
745
746 #    Domain name of server, to be displayed in the serverlist.
747 #    type: string
748 # server_address = game.minetest.net
749
750 #    Homepage of server, to be displayed in the serverlist.
751 #    type: string
752 # server_url = http://minetest.net
753
754 #    Automaticaly report to the serverlist.
755 #    type: bool
756 # server_announce = false
757
758 #    Announce to this serverlist.
759 #    If you want to announce your ipv6 address, use  serverlist_url = v6.servers.minetest.net.
760 #    type: string
761 # serverlist_url = servers.minetest.net
762
763 #    Disable escape sequences, e.g. chat coloring.
764 #    Use this if you want to run a server with pre-0.4.14 clients and you want to disable
765 #    the escape sequences generated by mods.
766 #    type: bool
767 # disable_escape_sequences = false
768
769 ## Network
770
771 #    Network port to listen (UDP).
772 #    This value will be overridden when starting from the main menu.
773 #    type: int
774 # port = 30000
775
776 #    The network interface that the server listens on.
777 #    type: string
778 # bind_address =
779
780 #    Enable to disallow old clients from connecting.
781 #    Older clients are compatible in the sense that they will not crash when connecting
782 #    to new servers, but they may not support all new features that you are expecting.
783 #    type: bool
784 # strict_protocol_version_checking = false
785
786 #    Specifies URL from which client fetches media instead of using UDP.
787 #    $filename should be accessible from $remote_media$filename via cURL
788 #    (obviously, remote_media should end with a slash).
789 #    Files that are not present will be fetched the usual way.
790 #    type: string
791 # remote_media =
792
793 #    Enable/disable running an IPv6 server.  An IPv6 server may be restricted
794 #    to IPv6 clients, depending on system configuration.
795 #    Ignored if bind_address is set.
796 #    type: bool
797 # ipv6_server = false
798
799 ### Advanced
800
801 #    Maximum number of blocks that are simultaneously sent per client.
802 #    type: int
803 # max_simultaneous_block_sends_per_client = 10
804
805 #    Maximum number of blocks that are simultaneously sent in total.
806 #    type: int
807 # max_simultaneous_block_sends_server_total = 40
808
809 #    To reduce lag, block transfers are slowed down when a player is building something.
810 #    This determines how long they are slowed down after placing or removing a node.
811 #    type: float
812 # full_block_send_enable_min_time_from_building = 2.0
813
814 #    Maximum number of packets sent per send step, if you have a slow connection
815 #    try reducing it, but don't reduce it to a number below double of targeted
816 #    client number.
817 #    type: int
818 # max_packets_per_iteration = 1024
819
820 ## Game
821
822 #    Default game when creating a new world.
823 #    This will be overridden when creating a world from the main menu.
824 #    type: string
825 # default_game = minetest
826
827 #    Message of the day displayed to players connecting.
828 #    type: string
829 # motd =
830
831 #    Maximum number of players that can connect simultaneously.
832 #    type: int
833 # max_users = 15
834
835 #    World directory (everything in the world is stored here).
836 #    Not needed if starting from the main menu.
837 #    type: path
838 # map-dir =
839
840 #    Time in seconds for item entity (dropped items) to live.
841 #    Setting it to -1 disables the feature.
842 #    type: int
843 # item_entity_ttl = 900
844
845 #    Enable players getting damage and dying.
846 #    type: bool
847 # enable_damage = false
848
849 #    A chosen map seed for a new map, leave empty for random.
850 #    Will be overridden when creating a new world in the main menu.
851 #    type: string
852 # fixed_map_seed =
853
854 #    New users need to input this password.
855 #    type: string
856 # default_password =
857
858 #    The privileges that new users automatically get.
859 #    See /privs in game for a full list on your server and mod configuration.
860 #    type: string
861 # default_privs = interact, shout
862
863 #    Privileges that players with basic_privs can grant
864 #    type: string
865 # basic_privs = interact, shout
866
867 #    Whether players are shown to clients without any range limit.
868 #    Deprecated, use the setting player_transfer_distance instead.
869 #    type: bool
870 # unlimited_player_transfer_distance = true
871
872 #    Defines the maximal player transfer distance in blocks (0 = unlimited).
873 #    type: int
874 # player_transfer_distance = 0
875
876 #    Whether to allow players to damage and kill each other.
877 #    type: bool
878 # enable_pvp = true
879
880 #    If this is set, players will always (re)spawn at the given position.
881 #    type: string
882 # static_spawnpoint =
883
884 #    If enabled, new players cannot join with an empty password.
885 #    type: bool
886 # disallow_empty_password = false
887
888 #    If enabled, disable cheat prevention in multiplayer.
889 #    type: bool
890 # disable_anticheat = false
891
892 #    If enabled, actions are recorded for rollback.
893 #    This option is only read when server starts.
894 #    type: bool
895 # enable_rollback_recording = false
896
897 #    A message to be displayed to all clients when the server shuts down.
898 #    type: string
899 # kick_msg_shutdown = Server shutting down.
900
901 #    A message to be displayed to all clients when the server crashes.
902 #    type: string
903 # kick_msg_crash = This server has experienced an internal error. You will now be disconnected.
904
905 #    Whether to ask clients to reconnect after a (Lua) crash.
906 #    Set this to true if your server is set up to restart automatically.
907 #    type: bool
908 # ask_reconnect_on_crash = false
909
910 #    From how far clients know about objects, stated in mapblocks (16 nodes).
911 #    type: int
912 # active_object_send_range_blocks = 3
913
914 #    How large area of blocks are subject to the active block stuff, stated in mapblocks (16 nodes).
915 #    In active blocks objects are loaded and ABMs run.
916 #    type: int
917 # active_block_range = 2
918
919 #    From how far blocks are sent to clients, stated in mapblocks (16 nodes).
920 #    type: int
921 # max_block_send_distance = 10
922
923 #    Maximum number of forceloaded mapblocks.
924 #    type: int
925 # max_forceloaded_blocks = 16
926
927 #    Interval of sending time of day to clients.
928 #    type: int
929 # time_send_interval = 5
930
931 #    Controls length of day/night cycle.
932 #    Examples: 72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged.
933 #    type: int
934 # time_speed = 72
935
936 #    Interval of saving important changes in the world, stated in seconds.
937 #    type: float
938 # server_map_save_interval = 5.3
939
940 #    Set the maximum character length of a chat message sent by clients. (0 to disable)
941 #    type: integer
942 # chat_message_max_size = 500
943
944 #    Limit a single player to send X messages per 10 seconds. (0 to disable)
945 #    type: float
946 # chat_message_limit_per_10sec = 8.0
947
948 #    Kick player if send more than X messages per 10 seconds. (0 to disable)
949 #    type: integer
950 # chat_message_limit_trigger_kick = 50
951
952 #    At this distance the server will aggressively optimize which blocks are sent to clients.
953 #    Small values potentially improve performance a lot, at the expense of visible rendering glitches.
954 #    (some blocks will not be rendered under water and in caves, as well as sometimes on land)
955 #    Setting this to a value greater than max_block_send_distance disables this optimization.
956 #    Stated in mapblocks (16 nodes)
957 #    type: int
958 # block_send_optimize_distance = 4
959
960 ### Physics
961
962 #    type: float
963 # movement_acceleration_default = 3
964
965 #    type: float
966 # movement_acceleration_air = 2
967
968 #    type: float
969 # movement_acceleration_fast = 10
970
971 #    type: float
972 # movement_speed_walk = 4
973
974 #    type: float
975 # movement_speed_crouch = 1.35
976
977 #    type: float
978 # movement_speed_fast = 20
979
980 #    type: float
981 # movement_speed_climb = 2
982
983 #    type: float
984 # movement_speed_jump = 6.5
985
986 #    type: float
987 # movement_speed_descend = 6
988
989 #    type: float
990 # movement_liquid_fluidity = 1
991
992 #    type: float
993 # movement_liquid_fluidity_smooth = 0.5
994
995 #    type: float
996 # movement_liquid_sink = 10
997
998 #    type: float
999 # movement_gravity = 9.81
1000
1001 ### Advanced
1002
1003 #    Handling for deprecated lua api calls:
1004 #    -    legacy: (try to) mimic old behaviour (default for release).
1005 #    -    log: mimic and log backtrace of deprecated call (default for debug).
1006 #    -    error: abort on usage of deprecated call (suggested for mod developers).
1007 #    type: enum values: legacy, log, error
1008 # deprecated_lua_api_handling = legacy
1009
1010 #    Number of extra blocks that can be loaded by /clearobjects at once.
1011 #    This is a trade-off between sqlite transaction overhead and
1012 #    memory consumption (4096=100MB, as a rule of thumb).
1013 #    type: int
1014 # max_clearobjects_extra_loaded_blocks = 4096
1015
1016 #    How much the server will wait before unloading unused mapblocks.
1017 #    Higher value is smoother, but will use more RAM.
1018 #    type: int
1019 # server_unload_unused_data_timeout = 29
1020
1021 #    Maximum number of statically stored objects in a block.
1022 #    type: int
1023 # max_objects_per_block = 64
1024
1025 #    See http://www.sqlite.org/pragma.html#pragma_synchronous
1026 #    type: enum values: 0, 1, 2
1027 # sqlite_synchronous = 2
1028
1029 #    Length of a server tick and the interval at which objects are generally updated over network.
1030 #    type: float
1031 # dedicated_server_step = 0.1
1032
1033 #    Time in between active block management cycles
1034 #    type: float
1035 # active_block_mgmt_interval = 2.0
1036
1037 #    Length of time between ABM execution cycles
1038 #    type: float
1039 # abm_interval = 1.0
1040
1041 #    Length of time between NodeTimer execution cycles
1042 #    type: float
1043 # nodetimer_interval = 1.0
1044
1045 #    If enabled, invalid world data won't cause the server to shut down.
1046 #    Only enable this if you know what you are doing.
1047 #    type: bool
1048 # ignore_world_load_errors = false
1049
1050 #    Max liquids processed per step.
1051 #    type: int
1052 # liquid_loop_max = 100000
1053
1054 #    The time (in seconds) that the liquids queue may grow beyond processing
1055 #    capacity until an attempt is made to decrease its size by dumping old queue
1056 #    items.  A value of 0 disables the functionality.
1057 #    type: int
1058 # liquid_queue_purge_time = 0
1059
1060 #    Liquid update interval in seconds.
1061 #    type: float
1062 # liquid_update = 1.0
1063
1064 ## Mapgen
1065
1066 #    Name of map generator to be used when creating a new world.
1067 #    Creating a world in the main menu will override this.
1068 #    type: enum values: v5, v6, v7, flat, valleys, fractal, singlenode
1069 # mg_name = v6
1070
1071 #    Water surface level of the world.
1072 #    type: int
1073 # water_level = 1
1074
1075 #    From how far blocks are generated for clients, stated in mapblocks (16 nodes).
1076 #    type: int
1077 # max_block_generate_distance = 6
1078
1079 #    Where the map generator stops.
1080 #    Please note:
1081 #    -    Limited to 31000 (setting above has no effect)
1082 #    -    The map generator works in groups of 80x80x80 nodes (5x5x5 MapBlocks).
1083 #    -    Those groups have an offset of -32, -32 nodes from the origin.
1084 #    -    Only groups which are within the map_generation_limit are generated
1085 #    type: int min: 0 max: 31000
1086 # map_generation_limit = 31000
1087
1088 #    Global map generation attributes.
1089 #    In Mapgen v6 the 'decorations' flag controls all decorations except trees
1090 #    and junglegrass, in all other mapgens this flag controls all decorations.
1091 #    Flags that are not specified in the flag string are not modified from the default.
1092 #    Flags starting with 'no' are used to explicitly disable them.
1093 #    type: flags possible values: caves, dungeons, light, decorations, nocaves, nodungeons, nolight, nodecorations
1094 # mg_flags = caves,dungeons,light,decorations
1095
1096 ### Advanced
1097
1098 #    Size of chunks to be generated at once by mapgen, stated in mapblocks (16 nodes).
1099 #    type: int
1100 # chunksize = 5
1101
1102 #    Dump the mapgen debug infos.
1103 #    type: bool
1104 # enable_mapgen_debug_info = false
1105
1106 #    Maximum number of blocks that can be queued for loading.
1107 #    type: int
1108 # emergequeue_limit_total = 256
1109
1110 #    Maximum number of blocks to be queued that are to be loaded from file.
1111 #    Set to blank for an appropriate amount to be chosen automatically.
1112 #    type: int
1113 # emergequeue_limit_diskonly = 32
1114
1115 #    Maximum number of blocks to be queued that are to be generated.
1116 #    Set to blank for an appropriate amount to be chosen automatically.
1117 #    type: int
1118 # emergequeue_limit_generate = 32
1119
1120 #    Number of emerge threads to use. Make this field blank, or increase this number
1121 #    to use multiple threads. On multiprocessor systems, this will improve mapgen speed greatly
1122 #    at the cost of slightly buggy caves.
1123 #    type: int
1124 # num_emerge_threads = 1
1125
1126 #### Noise parameters and formats
1127
1128 #    Noise parameters can be specified as a set of positional values, for example:
1129 #    Offset, scale, (spread factors), seed offset, number of octaves, persistence, lacunarity
1130 # mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
1131 #    Or the group format can be used instead, for example:
1132 # mgv6_np_terrain_base = {
1133 #    offset      = -4,
1134 #    scale       = 20,
1135 #    spread      = (250, 250, 250),
1136 #    seed        = 82341,
1137 #    octaves     = 5,
1138 #    persistence = 0.6,
1139 #    lacunarity  = 2.0,
1140 #    flags       = "defaults"
1141 # }
1142 #    Only the group format supports noise flags which are needed for eased noise.
1143 #    Mgv5 uses eased noise for np_ground so this is shown in group format below.
1144
1145 #    Noise parameters for biome API temperature, humidity and biome blend.
1146 #    type: noise_params
1147 # mg_biome_np_heat = 50, 50, (750, 750, 750), 5349, 3, 0.5, 2.0
1148
1149 #    type: noise_params
1150 # mg_biome_np_heat_blend = 0, 1.5, (8, 8, 8), 13, 2, 1.0, 2.0
1151
1152 #    type: noise_params
1153 # mg_biome_np_humidity = 50, 50, (750, 750, 750), 842, 3, 0.5, 2.0
1154
1155 #    type: noise_params
1156 # mg_biome_np_humidity_blend = 0, 1.5, (8, 8, 8), 90003, 2, 1.0, 2.0
1157
1158 #### Mapgen v5
1159
1160 #    Controls width of tunnels, a smaller value creates wider tunnels.
1161 #    type: float
1162 # mgv5_cave_width = 0.125
1163
1164 #    type: noise_params
1165 # mgv5_np_filler_depth = 0, 1, (150, 150, 150), 261, 4, 0.7, 2.0
1166
1167 #    type: noise_params
1168 # mgv5_np_factor = 0, 1, (250, 250, 250), 920381, 3, 0.45, 2.0
1169
1170 #    type: noise_params
1171 # mgv5_np_height = 0, 10, (250, 250, 250), 84174, 4, 0.5, 2.0
1172
1173 #    type: noise_params
1174 # mgv5_np_cave1 = 0, 12, (50, 50, 50), 52534, 4, 0.5, 2.0
1175
1176 #    type: noise_params
1177 # mgv5_np_cave2 = 0, 12, (50, 50, 50), 10325, 4, 0.5, 2.0
1178
1179 #    Noise parameters in group format, unsupported by advanced settings
1180 #    menu but settable in minetest.conf.
1181 #    See documentation of noise parameter formats above.
1182 # mgv5_np_ground = {
1183 #    offset      = 0,
1184 #    scale       = 40,
1185 #    spread      = (80, 80, 80),
1186 #    seed        = 983240,
1187 #    octaves     = 4,
1188 #    persistence = 0.55,
1189 #    lacunarity  = 2.0,
1190 #    flags       = "eased"
1191 # }
1192
1193 #### Mapgen v6
1194
1195 #    Map generation attributes specific to Mapgen v6.
1196 #    When snowbiomes are enabled jungles are automatically enabled, the 'jungles' flag is ignored.
1197 #    Flags that are not specified in the flag string are not modified from the default.
1198 #    Flags starting with 'no' are used to explicitly disable them.
1199 #    type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, flat, trees, nojungles, nobiomeblend, nomudflow, nosnowbiomes, noflat, notrees
1200 # mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes,trees
1201
1202 #    Controls size of deserts and beaches in Mapgen v6.
1203 #    When snowbiomes are enabled 'mgv6_freq_desert' is ignored.
1204 #    type: float
1205 # mgv6_freq_desert = 0.45
1206
1207 #    type: float
1208 # mgv6_freq_beach = 0.15
1209
1210 #    type: noise_params
1211 # mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
1212
1213 #    type: noise_params
1214 # mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6, 2.0
1215
1216 #    type: noise_params
1217 # mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7, 2.0
1218
1219 #    type: noise_params
1220 # mgv6_np_height_select = 0.5, 1, (250, 250, 250), 4213, 5, 0.69, 2.0
1221
1222 #    type: noise_params
1223 # mgv6_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55, 2.0
1224
1225 #    type: noise_params
1226 # mgv6_np_beach = 0, 1, (250, 250, 250), 59420, 3, 0.50, 2.0
1227
1228 #    type: noise_params
1229 # mgv6_np_biome = 0, 1, (500, 500, 500), 9130, 3, 0.50, 2.0
1230
1231 #    type: noise_params
1232 # mgv6_np_cave = 6, 6, (250, 250, 250), 34329, 3, 0.50, 2.0
1233
1234 #    type: noise_params
1235 # mgv6_np_humidity = 0.5, 0.5, (500, 500, 500), 72384, 3, 0.50, 2.0
1236
1237 #    type: noise_params
1238 # mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66, 2.0
1239
1240 #    type: noise_params
1241 # mgv6_np_apple_trees = 0, 1, (100, 100, 100), 342902, 3, 0.45, 2.0
1242
1243 #### Mapgen v7
1244
1245 #    Map generation attributes specific to Mapgen v7.
1246 #    The 'ridges' flag enables the rivers.
1247 #    Floatlands are currently experimental and subject to change.
1248 #    Flags that are not specified in the flag string are not modified from the default.
1249 #    Flags starting with 'no' are used to explicitly disable them.
1250 #    type: flags possible values: mountains, ridges, floatlands,
1251 #    nomountains, noridges, nofloatlands
1252 # mgv7_spflags = mountains,ridges
1253
1254 #    Controls width of tunnels, a smaller value creates wider tunnels.
1255 #    type: float
1256 # mgv7_cave_width = 0.2
1257
1258 #    Controls the density of floatland mountain terrain.
1259 #    Is an offset added to the 'np_mountain' noise value.
1260 #    type: float
1261 # mgv7_float_mount_density = 0.6
1262
1263 #    Typical maximum height, above and below midpoint, of floatland mountain terrain.
1264 #    type: float
1265 # mgv7_float_mount_height = 128.0
1266
1267 #    Y-level of floatland midpoint and lake surface.
1268 #    type: int
1269 # mgv7_floatland_level = 1280
1270
1271 #    Y-level to which floatland shadows extend.
1272 #    type: int
1273 # mgv7_shadow_limit = 1024
1274
1275 #    type: noise_params
1276 # mgv7_np_terrain_base = 4, 70, (600, 600, 600), 82341, 5, 0.6, 2.0
1277
1278 #    type: noise_params
1279 # mgv7_np_terrain_alt = 4, 25, (600, 600, 600), 5934, 5, 0.6, 2.0
1280
1281 #    type: noise_params
1282 # mgv7_np_terrain_persist = 0.6, 0.1, (2000, 2000, 2000), 539, 3, 0.6, 2.0
1283
1284 #    type: noise_params
1285 # mgv7_np_height_select = -8, 16, (500, 500, 500), 4213, 6, 0.7, 2.0
1286
1287 #    type: noise_params
1288 # mgv7_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
1289
1290 #    type: noise_params
1291 # mgv7_np_mount_height = 256, 112, (1000, 1000, 1000), 72449, 3, 0.6, 2.0
1292
1293 #    type: noise_params
1294 # mgv7_np_ridge_uwater = 0, 1, (1000, 1000, 1000), 85039, 5, 0.6, 2.0
1295
1296 #    type: noise_params
1297 # mgv7_np_floatland_base = -0.6, 1.5, (600, 600, 600), 114, 5, 0.6, 2.0
1298
1299 #    type: noise_params
1300 # mgv7_np_float_base_height = 48, 24, (300, 300, 300), 907, 4, 0.7, 2.0
1301
1302 #    type: noise_params
1303 # mgv7_np_mountain = -0.6, 1, (250, 350, 250), 5333, 5, 0.63, 2.0
1304
1305 #    type: noise_params
1306 # mgv7_np_ridge = 0, 1, (100, 100, 100), 6467, 4, 0.75, 2.0
1307
1308 #    type: noise_params
1309 # mgv7_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
1310
1311 #    type: noise_params
1312 # mgv7_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
1313
1314 #### Mapgen flat
1315
1316 #    Map generation attributes specific to Mapgen flat.
1317 #    Occasional lakes and hills can be added to the flat world.
1318 #    Flags that are not specified in the flag string are not modified from the default.
1319 #    Flags starting with 'no' are used to explicitly disable them.
1320 #    type: flags possible values: lakes, hills, , nolakes, nohills
1321 # mgflat_spflags =
1322
1323 #    Y of flat ground.
1324 #    type: int
1325 # mgflat_ground_level = 8
1326
1327 #    Y of upper limit of large pseudorandom caves.
1328 #    type: int
1329 # mgflat_large_cave_depth = -33
1330
1331 #    Controls width of tunnels, a smaller value creates wider tunnels.
1332 #    type: float
1333 # mgflat_cave_width = 0.2
1334
1335 #    Terrain noise threshold for lakes.
1336 #    Controls proportion of world area covered by lakes.
1337 #    Adjust towards 0.0 for a larger proportion.
1338 #    type: float
1339 # mgflat_lake_threshold = -0.45
1340
1341 #    Controls steepness/depth of lake depressions.
1342 #    type: float
1343 # mgflat_lake_steepness = 48.0
1344
1345 #    Terrain noise threshold for hills.
1346 #    Controls proportion of world area covered by hills.
1347 #    Adjust towards 0.0 for a larger proportion.
1348 #    type: float
1349 # mgflat_hill_threshold = 0.45
1350
1351 #    Controls steepness/height of hills.
1352 #    type: float
1353 # mgflat_hill_steepness = 64.0
1354
1355 #    Determines terrain shape.
1356 #    The 3 numbers in brackets control the scale of the
1357 #    terrain, the 3 numbers should be identical.
1358 #    type: noise_params
1359 # mgflat_np_terrain = 0, 1, (600, 600, 600), 7244, 5, 0.6, 2.0
1360
1361 #    type: noise_params
1362 # mgflat_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
1363
1364 #    type: noise_params
1365 # mgflat_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
1366
1367 #    type: noise_params
1368 # mgflat_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
1369
1370 #### Mapgen fractal
1371
1372 #    Controls width of tunnels, a smaller value creates wider tunnels.
1373 #    type: float
1374 # mgfractal_cave_width = 0.2
1375
1376 #    Choice of 18 fractals from 9 formulas.
1377 #    1 = 4D "Roundy" mandelbrot set.
1378 #    2 = 4D "Roundy" julia set.
1379 #    3 = 4D "Squarry" mandelbrot set.
1380 #    4 = 4D "Squarry" julia set.
1381 #    5 = 4D "Mandy Cousin" mandelbrot set.
1382 #    6 = 4D "Mandy Cousin" julia set.
1383 #    7 = 4D "Variation" mandelbrot set.
1384 #    8 = 4D "Variation" julia set.
1385 #    9 = 3D "Mandelbrot/Mandelbar" mandelbrot set.
1386 #    10 = 3D "Mandelbrot/Mandelbar" julia set.
1387 #    11 = 3D "Christmas Tree" mandelbrot set.
1388 #    12 = 3D "Christmas Tree" julia set.
1389 #    13 = 3D "Mandelbulb" mandelbrot set.
1390 #    14 = 3D "Mandelbulb" julia set.
1391 #    15 = 3D "Cosine Mandelbulb" mandelbrot set.
1392 #    16 = 3D "Cosine Mandelbulb" julia set.
1393 #    17 = 4D "Mandelbulb" mandelbrot set.
1394 #    18 = 4D "Mandelbulb" julia set.
1395 #    type: int min: 1 max: 18
1396 # mgfractal_fractal = 1
1397
1398 #    Iterations of the recursive function.
1399 #    Controls the amount of fine detail.
1400 #    type: int
1401 # mgfractal_iterations = 11
1402
1403 #    Approximate (X,Y,Z) scale of fractal in nodes.
1404 #    type: v3f
1405 # mgfractal_scale = (4096.0, 1024.0, 4096.0)
1406
1407 #    (X,Y,Z) offset of fractal from world centre in units of 'scale'.
1408 #    Used to move a suitable spawn area of low land close to (0, 0).
1409 #    The default is suitable for mandelbrot sets, it needs to be edited for julia sets.
1410 #    Range roughly -2 to 2. Multiply by 'scale' for offset in nodes.
1411 #    type: v3f
1412 # mgfractal_offset = (1.79, 0.0, 0.0)
1413
1414 #    W co-ordinate of the generated 3D slice of a 4D fractal.
1415 #    Determines which 3D slice of the 4D shape is generated.
1416 #    Has no effect on 3D fractals.
1417 #    Range roughly -2 to 2.
1418 #    type: float
1419 # mgfractal_slice_w = 0.0
1420
1421 #    Julia set only: X component of hypercomplex constant determining julia shape.
1422 #    Range roughly -2 to 2.
1423 #    type: float
1424 # mgfractal_julia_x = 0.33
1425
1426 #    Julia set only: Y component of hypercomplex constant determining julia shape.
1427 #    Range roughly -2 to 2.
1428 #    type: float
1429 # mgfractal_julia_y = 0.33
1430
1431 #    Julia set only: Z component of hypercomplex constant determining julia shape.
1432 #    Range roughly -2 to 2.
1433 #    type: float
1434 # mgfractal_julia_z = 0.33
1435
1436 #    Julia set only: W component of hypercomplex constant determining julia shape.
1437 #    Has no effect on 3D fractals.
1438 #    Range roughly -2 to 2.
1439 #    type: float
1440 # mgfractal_julia_w = 0.33
1441
1442 #    type: noise_params
1443 # mgfractal_np_seabed = -14, 9, (600, 600, 600), 41900, 5, 0.6, 2.0
1444
1445 #    type: noise_params
1446 # mgfractal_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
1447
1448 #    type: noise_params
1449 # mgfractal_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
1450
1451 #    type: noise_params
1452 # mgfractal_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
1453
1454 #### Mapgen Valleys
1455
1456 ##### General
1457
1458 #    Map generation attributes specific to Mapgen Valleys.
1459 #    'altitude_chill' makes higher elevations colder, which may cause biome issues.
1460 #    'humid_rivers' modifies the humidity around rivers and in areas where water would tend to pool,
1461 #    it may interfere with delicately adjusted biomes.
1462 #    Flags that are not specified in the flag string are not modified from the default.
1463 #    Flags starting with 'no' are used to explicitly disable them.
1464 #    type: flags possible values: altitude_chill, noaltitude_chill, humid_rivers, nohumid_rivers
1465 # mg_valleys_spflags = altitude_chill,humid_rivers
1466
1467 #    The altitude at which temperature drops by 20C
1468 #    type: int
1469 # mgvalleys_altitude_chill = 90
1470
1471 #    Depth below which you'll find large caves.
1472 #    type: int
1473 # mgvalleys_large_cave_depth = -33
1474
1475 #    Creates unpredictable lava features in caves.
1476 #    These can make mining difficult. Zero disables them. (0-10)
1477 #    type: int
1478 # mgvalleys_lava_features = 0
1479
1480 #    Depth below which you'll find massive caves.
1481 #    type: int
1482 # mgvalleys_massive_cave_depth = -256
1483
1484 #    How deep to make rivers
1485 #    type: int
1486 # mgvalleys_river_depth = 4
1487
1488 #    How wide to make rivers
1489 #    type: int
1490 # mgvalleys_river_size = 5
1491
1492 #    Creates unpredictable water features in caves.
1493 #    These can make mining difficult. Zero disables them. (0-10)
1494 #    type: int
1495 # mgvalleys_water_features = 0
1496
1497 #    Controls width of tunnels, a smaller value creates wider tunnels.
1498 #    type: float
1499 # mgvalleys_cave_width = 0.2
1500
1501 ##### Noises
1502
1503 #    Caves and tunnels form at the intersection of the two noises
1504 #    type: noise_params
1505 # mgvalleys_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
1506
1507 #    Caves and tunnels form at the intersection of the two noises
1508 #    type: noise_params
1509 # mgvalleys_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
1510
1511 #    The depth of dirt or other filler
1512 #    type: noise_params
1513 # mgvalleys_np_filler_depth = 0, 1.2, (256, 256, 256), 1605, 3, 0.5, 2.0
1514
1515 #    Massive caves form here.
1516 #    type: noise_params
1517 # mgvalleys_np_massive_caves = 0, 1, (768, 256, 768), 59033, 6, 0.63, 2.0
1518
1519 #    River noise -- rivers occur close to zero
1520 #    type: noise_params
1521 # mgvalleys_np_rivers = 0, 1, (256, 256, 256), -6050, 5, 0.6, 2.0
1522
1523 #    Base terrain height
1524 #    type: noise_params
1525 # mgvalleys_np_terrain_height = -10, 50, (1024, 1024, 1024), 5202, 6, 0.4, 2.0
1526
1527 #    Raises terrain to make valleys around the rivers
1528 #    type: noise_params
1529 # mgvalleys_np_valley_depth = 5, 4, (512, 512, 512), -1914, 1, 1.0, 2.0
1530
1531 #    Slope and fill work together to modify the heights
1532 #    type: noise_params
1533 # mgvalleys_np_inter_valley_fill = 0, 1, (256, 512, 256), 1993, 6, 0.8, 2.0
1534
1535 #    Amplifies the valleys
1536 #    type: noise_params
1537 # mgvalleys_np_valley_profile = 0.6, 0.5, (512, 512, 512), 777, 1, 1.0, 2.0
1538
1539 #    Slope and fill work together to modify the heights
1540 #    type: noise_params
1541 # mgvalleys_np_inter_valley_slope = 0.5, 0.5, (128, 128, 128), 746, 1, 1.0, 2.0
1542
1543 ## Security
1544
1545 #    Prevent mods from doing insecure things like running shell commands.
1546 #    type: bool
1547 # secure.enable_security = true
1548
1549 #    Comma-separated list of trusted mods that are allowed to access insecure
1550 #    functions even when mod security is on (via request_insecure_environment()).
1551 #    type: string
1552 # secure.trusted_mods =
1553
1554 #    Comma-separated list of mods that are allowed to access HTTP APIs, which
1555 #    allow them to upload and download data to/from the internet.
1556 #    type: string
1557 # secure.http_mods =
1558
1559 ## Advanced
1560
1561 ### Profiling
1562
1563 #    Load the game profiler to collect game profiling data.
1564 #    Provides a /profiler command to access the compiled profile.
1565 #    Useful for mod developers and server operators.
1566 #    type: bool
1567 # profiler.load = false
1568
1569 #    The default format in which profiles are being saved,
1570 #    when calling `/profiler save [format]` without format.
1571 #    type: enum values: txt, csv, lua, json, json_pretty
1572 # profiler.default_report_format = txt
1573
1574 #    The file path relative to your worldpath in which profiles will be saved to.
1575 #
1576 #    type: string
1577 # profiler.report_path = ""
1578
1579 #### Instrumentation
1580
1581 #    Instrument the methods of entities on registration.
1582 #    type: bool
1583 # instrument.entity = true
1584
1585 #    Instrument the action function of Active Block Modifiers on registration.
1586 #    type: bool
1587 # instrument.abm = true
1588
1589 #    Instrument the action function of Loading Block Modifiers on registration.
1590 #    type: bool
1591 # instrument.lbm = true
1592
1593 #    Instrument chatcommands on registration.
1594 #    type: bool
1595 # instrument.chatcommand = true
1596
1597 #    Instrument global callback functions on registration.
1598 #    (anything you pass to a minetest.register_*() function)
1599 #    type: bool
1600 # instrument.global_callback = true
1601
1602 ##### Advanced
1603
1604 #    Instrument builtin.
1605 #    This is usually only needed by core/builtin contributors
1606 #    type: bool
1607 # instrument.builtin = false
1608
1609 #    Have the profiler instrument itself:
1610 #    * Instrument an empty function.
1611 #    This estimates the overhead, that instrumentation is adding (+1 function call).
1612 #    * Instrument the sampler being used to update the statistics.
1613 #    type: bool
1614 # instrument.profiler = false
1615
1616 #
1617 # Client and Server
1618 #
1619
1620 #    Name of the player.
1621 #    When running a server, clients connecting with this name are admins.
1622 #    When starting from the main menu, this is overridden.
1623 #    type: string
1624 # name =
1625
1626 #    Set the language. Leave empty to use the system language.
1627 #    A restart is required after changing this.
1628 #    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
1629 # language =
1630
1631 #    Level of logging to be written to debug.txt:
1632 #    -    <nothing> (no logging)
1633 #    -    none (messages with no level)
1634 #    -    error
1635 #    -    warning
1636 #    -    action
1637 #    -    info
1638 #    -    verbose
1639 #    type: enum values: , warning, action, info, verbose
1640 # debug_log_level = action
1641
1642 #    IPv6 support.
1643 #    type: bool
1644 # enable_ipv6 = true
1645
1646 ## Advanced
1647
1648 #    Default timeout for cURL, stated in milliseconds.
1649 #    Only has an effect if compiled with cURL.
1650 #    type: int
1651 # curl_timeout = 5000
1652
1653 #    Limits number of parallel HTTP requests. Affects:
1654 #    -    Media fetch if server uses remote_media setting.
1655 #    -    Serverlist download and server announcement.
1656 #    -    Downloads performed by main menu (e.g. mod manager).
1657 #    Only has an effect if compiled with cURL.
1658 #    type: int
1659 # curl_parallel_limit = 8
1660
1661 #    Maximum time in ms a file download (e.g. a mod download) may take.
1662 #    type: int
1663 # curl_file_download_timeout = 300000
1664
1665 #    Makes DirectX work with LuaJIT. Disable if it causes troubles.
1666 #    type: bool
1667 # high_precision_fpu = true
1668
1669 #    Replaces the default main menu with a custom one.
1670 #    type: string
1671 # main_menu_script =
1672
1673 #    type: int
1674 # main_menu_game_mgr = 0
1675
1676 #    type: int
1677 # main_menu_mod_mgr = 1
1678
1679 #    type: string
1680 # modstore_download_url = https://forum.minetest.net/media/
1681
1682 #    type: string
1683 # modstore_listmods_url = https://forum.minetest.net/mmdb/mods/
1684
1685 #    type: string
1686 # modstore_details_url = https://forum.minetest.net/mmdb/mod/*/
1687
1688 #    Print the engine's profiling data in regular intervals (in seconds). 0 = disable. Useful for developers.
1689 #    type: int
1690 # profiler_print_interval = 0
1691