View range: Set maximum to 4000 nodes
[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 #    type: int min: 20 max: 4000
477 # viewing_range = 100
478
479 #    Width component of the initial window size.
480 #    type: int
481 # screenW = 800
482
483 #    Height component of the initial window size.
484 #    type: int
485 # screenH = 600
486
487 #    Fullscreen mode.
488 #    type: bool
489 # fullscreen = false
490
491 #    Bits per pixel (aka color depth) in fullscreen mode.
492 #    type: int
493 # fullscreen_bpp = 24
494
495 #    Vertical screen synchronization.
496 #    type: bool
497 # vsync = false
498
499 #    Field of view in degrees.
500 #    type: int min: 30 max: 160
501 # fov = 72
502
503 #    Field of view while zooming in degrees.
504 #    This requires the "zoom" privilege on the server.
505 #    type: int min: 15 max: 160
506 # zoom_fov = 15
507
508 #    Adjust the gamma encoding for the light tables. Lower numbers are brighter.
509 #    This setting is for the client only and is ignored by the server.
510 #    type: float min: 1 max: 3
511 # display_gamma = 1.8
512
513 #    Path to texture directory. All textures are first searched from here.
514 #    type: path
515 # texture_path =
516
517 #    The rendering back-end for Irrlicht.
518 #    type: enum values: null, software, burningsvideo, direct3d8, direct3d9, opengl
519 # video_driver = opengl
520
521 #    Height on which clouds are appearing.
522 #    type: int
523 # cloud_height = 120
524
525 #    Radius of cloud area stated in number of 64 node cloud squares.
526 #    Values larger than 26 will start to produce sharp cutoffs at cloud area corners.
527 #    type: int
528 # cloud_radius = 12
529
530 #    Multiplier for view bobbing.
531 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
532 #    type: float
533 # view_bobbing_amount = 1.0
534
535 #    Multiplier for fall bobbing.
536 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
537 #    type: float
538 # fall_bobbing_amount = 0.0
539
540 #    3D support.
541 #    Currently supported:
542 #    -    none: no 3d output.
543 #    -    anaglyph: cyan/magenta color 3d.
544 #    -    interlaced: odd/even line based polarisation screen support.
545 #    -    topbottom: split screen top/bottom.
546 #    -    sidebyside: split screen side by side.
547 #    -    pageflip: quadbuffer based 3d.
548 #    type: enum values: none, anaglyph, interlaced, topbottom, sidebyside, pageflip
549 # 3d_mode = none
550
551 #    In-game chat console background color (R,G,B).
552 #    type: string
553 # console_color = (0,0,0)
554
555 #    In-game chat console background alpha (opaqueness, between 0 and 255).
556 #    type: int min: 0 max: 255
557 # console_alpha = 200
558
559 #    Selection box border color (R,G,B).
560 #    type: string
561 # selectionbox_color = (0,0,0)
562
563 #    Width of the selectionbox's lines around nodes.
564 #    type: int min: 1 max: 5
565 # selectionbox_width = 2
566
567 #    Crosshair color (R,G,B).
568 #    type: string
569 # crosshair_color = (255,255,255)
570
571 #    Crosshair alpha (opaqueness, between 0 and 255).
572 #    type: int min: 0 max: 255
573 # crosshair_alpha = 255
574
575 #    Whether node texture animations should be desynchronized per mapblock.
576 #    type: bool
577 # desynchronize_mapblock_texture_animation = true
578
579 #    Maximum proportion of current window to be used for hotbar.
580 #    Useful if there's something to be displayed right or left of hotbar.
581 #    type: float
582 # hud_hotbar_max_width = 1.0
583
584 #    Enables caching of facedir rotated meshes.
585 #    type: bool
586 # enable_mesh_cache = false
587
588 #    Enables minimap.
589 #    type: bool
590 # enable_minimap = true
591
592 #    Shape of the minimap. Enabled = round, disabled = square.
593 #    type: bool
594 # minimap_shape_round = true
595
596 #    True = 256
597 #    False = 128
598 #    Useable to make minimap smoother on slower machines.
599 #    type: bool
600 # minimap_double_scan_height = true
601
602 #    Make fog and sky colors depend on daytime (dawn/sunset) and view direction.
603 #    type: bool
604 # directional_colored_fog = true
605
606 #    The strength (darkness) of node ambient-occlusion shading.
607 #    Lower is darker, Higher is lighter. The valid range of values for this
608 #    setting is 0.25 to 4.0 inclusive. If the value is out of range it will be
609 #    set to the nearest valid value.
610 #    type: float min: 0.25 max: 4
611 # ambient_occlusion_gamma = 2.2
612
613 #    Enables animation of inventory items.
614 #    type: bool
615 # inventory_items_animations = false
616
617 #    Fraction of the visible distance at which fog starts to be rendered
618 #    Range 0 - 0.99
619 # fog_start = 0.4
620
621 ### Menus
622
623 #    Use a cloud animation for the main menu background.
624 #    type: bool
625 # menu_clouds = true
626
627 #    Scale gui by a user specified value.
628 #    Use a nearest-neighbor-anti-alias filter to scale the GUI.
629 #    This will smooth over some of the rough edges, and blend
630 #    pixels when scaling down, at the cost of blurring some
631 #    edge pixels when images are scaled by non-integer sizes.
632 #    type: float
633 # gui_scaling = 1.0
634
635 #    When gui_scaling_filter is true, all GUI images need to be
636 #    filtered in software, but some images are generated directly
637 #    to hardware (e.g. render-to-texture for nodes in inventory).
638 #    type: bool
639 # gui_scaling_filter = false
640
641 #    When gui_scaling_filter_txr2img is true, copy those images
642 #    from hardware to software for scaling.  When false, fall back
643 #    to the old scaling method, for video drivers that don't
644 #    properly support downloading textures back from hardware.
645 #    type: bool
646 # gui_scaling_filter_txr2img = true
647
648 #    Delay showing tooltips, stated in milliseconds.
649 #    type: int
650 # tooltip_show_delay = 400
651
652 #    Whether freetype fonts are used, requires freetype support to be compiled in.
653 #    type: bool
654 # freetype = true
655
656 #    Path to TrueTypeFont or bitmap.
657 #    type: path
658 # font_path = fonts/liberationsans.ttf
659
660 #    type: int
661 # font_size = 16
662
663 #    Font shadow offset, if 0 then shadow will not be drawn.
664 #    type: int
665 # font_shadow = 1
666
667 #    Font shadow alpha (opaqueness, between 0 and 255).
668 #    type: int min: 0 max: 255
669 # font_shadow_alpha = 127
670
671 #    type: path
672 # mono_font_path = fonts/liberationmono.ttf
673
674 #    type: int
675 # mono_font_size = 15
676
677 #    This font will be used for certain languages.
678 #    type: path
679 # fallback_font_path = fonts/DroidSansFallbackFull.ttf
680
681 #    type: int
682 # fallback_font_size = 15
683
684 #    type: int
685 # fallback_font_shadow = 1
686
687 #    type: int min: 0 max: 255
688 # fallback_font_shadow_alpha = 128
689
690 #    Path to save screenshots at.
691 #    type: path
692 # screenshot_path =
693
694 #    Format of screenshots.
695 #    type: enum values: png, jpg, bmp, pcx, ppm, tga
696 # screenshot_format = png
697
698 #    Screenshot quality. Only used for JPEG format.
699 #    1 means worst quality; 100 means best quality.
700 #    Use 0 for default quality.
701 #    type: int min: 0 max: 100
702 # screenshot_quality = 0
703
704 ### Advanced
705
706 #    Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k screens.
707 #    type: int
708 # screen_dpi = 72
709
710 ## Sound
711
712 #    type: bool
713 # enable_sound = true
714
715 #    type: float min: 0 max: 1
716 # sound_volume = 0.7
717
718 ## Advanced
719
720 #    Timeout for client to remove unused map data from memory.
721 #    type: int
722 # client_unload_unused_data_timeout = 600
723
724 #    Maximum number of mapblocks for client to be kept in memory.
725 #    Set to -1 for unlimited amount.
726 #    type: int
727 # client_mapblock_limit = 5000
728
729 #    Whether to show the client debug info (has the same effect as hitting F5).
730 #    type: bool
731 # show_debug = false
732
733 #
734 # Server / Singleplayer
735 #
736
737 #    Name of the server, to be displayed when players join and in the serverlist.
738 #    type: string
739 # server_name = Minetest server
740
741 #    Description of server, to be displayed when players join and in the serverlist.
742 #    type: string
743 # server_description = mine here
744
745 #    Domain name of server, to be displayed in the serverlist.
746 #    type: string
747 # server_address = game.minetest.net
748
749 #    Homepage of server, to be displayed in the serverlist.
750 #    type: string
751 # server_url = http://minetest.net
752
753 #    Automaticaly report to the serverlist.
754 #    type: bool
755 # server_announce = false
756
757 #    Announce to this serverlist.
758 #    If you want to announce your ipv6 address, use  serverlist_url = v6.servers.minetest.net.
759 #    type: string
760 # serverlist_url = servers.minetest.net
761
762 #    Disable escape sequences, e.g. chat coloring.
763 #    Use this if you want to run a server with pre-0.4.14 clients and you want to disable
764 #    the escape sequences generated by mods.
765 #    type: bool
766 # disable_escape_sequences = false
767
768 ## Network
769
770 #    Network port to listen (UDP).
771 #    This value will be overridden when starting from the main menu.
772 #    type: int
773 # port = 30000
774
775 #    The network interface that the server listens on.
776 #    type: string
777 # bind_address =
778
779 #    Enable to disallow old clients from connecting.
780 #    Older clients are compatible in the sense that they will not crash when connecting
781 #    to new servers, but they may not support all new features that you are expecting.
782 #    type: bool
783 # strict_protocol_version_checking = false
784
785 #    Specifies URL from which client fetches media instead of using UDP.
786 #    $filename should be accessible from $remote_media$filename via cURL
787 #    (obviously, remote_media should end with a slash).
788 #    Files that are not present will be fetched the usual way.
789 #    type: string
790 # remote_media =
791
792 #    Enable/disable running an IPv6 server.  An IPv6 server may be restricted
793 #    to IPv6 clients, depending on system configuration.
794 #    Ignored if bind_address is set.
795 #    type: bool
796 # ipv6_server = false
797
798 ### Advanced
799
800 #    Maximum number of blocks that are simultaneously sent per client.
801 #    type: int
802 # max_simultaneous_block_sends_per_client = 10
803
804 #    Maximum number of blocks that are simultaneously sent in total.
805 #    type: int
806 # max_simultaneous_block_sends_server_total = 40
807
808 #    To reduce lag, block transfers are slowed down when a player is building something.
809 #    This determines how long they are slowed down after placing or removing a node.
810 #    type: float
811 # full_block_send_enable_min_time_from_building = 2.0
812
813 #    Maximum number of packets sent per send step, if you have a slow connection
814 #    try reducing it, but don't reduce it to a number below double of targeted
815 #    client number.
816 #    type: int
817 # max_packets_per_iteration = 1024
818
819 ## Game
820
821 #    Default game when creating a new world.
822 #    This will be overridden when creating a world from the main menu.
823 #    type: string
824 # default_game = minetest
825
826 #    Message of the day displayed to players connecting.
827 #    type: string
828 # motd =
829
830 #    Maximum number of players that can connect simultaneously.
831 #    type: int
832 # max_users = 15
833
834 #    World directory (everything in the world is stored here).
835 #    Not needed if starting from the main menu.
836 #    type: path
837 # map-dir =
838
839 #    Time in seconds for item entity (dropped items) to live.
840 #    Setting it to -1 disables the feature.
841 #    type: int
842 # item_entity_ttl = 900
843
844 #    Enable players getting damage and dying.
845 #    type: bool
846 # enable_damage = false
847
848 #    A chosen map seed for a new map, leave empty for random.
849 #    Will be overridden when creating a new world in the main menu.
850 #    type: string
851 # fixed_map_seed =
852
853 #    New users need to input this password.
854 #    type: string
855 # default_password =
856
857 #    The privileges that new users automatically get.
858 #    See /privs in game for a full list on your server and mod configuration.
859 #    type: string
860 # default_privs = interact, shout
861
862 #    Privileges that players with basic_privs can grant
863 #    type: string
864 # basic_privs = interact, shout
865
866 #    Whether players are shown to clients without any range limit.
867 #    Deprecated, use the setting player_transfer_distance instead.
868 #    type: bool
869 # unlimited_player_transfer_distance = true
870
871 #    Defines the maximal player transfer distance in blocks (0 = unlimited).
872 #    type: int
873 # player_transfer_distance = 0
874
875 #    Whether to allow players to damage and kill each other.
876 #    type: bool
877 # enable_pvp = true
878
879 #    If this is set, players will always (re)spawn at the given position.
880 #    type: string
881 # static_spawnpoint =
882
883 #    If enabled, new players cannot join with an empty password.
884 #    type: bool
885 # disallow_empty_password = false
886
887 #    If enabled, disable cheat prevention in multiplayer.
888 #    type: bool
889 # disable_anticheat = false
890
891 #    If enabled, actions are recorded for rollback.
892 #    This option is only read when server starts.
893 #    type: bool
894 # enable_rollback_recording = false
895
896 #    A message to be displayed to all clients when the server shuts down.
897 #    type: string
898 # kick_msg_shutdown = Server shutting down.
899
900 #    A message to be displayed to all clients when the server crashes.
901 #    type: string
902 # kick_msg_crash = This server has experienced an internal error. You will now be disconnected.
903
904 #    Whether to ask clients to reconnect after a (Lua) crash.
905 #    Set this to true if your server is set up to restart automatically.
906 #    type: bool
907 # ask_reconnect_on_crash = false
908
909 #    From how far clients know about objects, stated in mapblocks (16 nodes).
910 #    type: int
911 # active_object_send_range_blocks = 3
912
913 #    How large area of blocks are subject to the active block stuff, stated in mapblocks (16 nodes).
914 #    In active blocks objects are loaded and ABMs run.
915 #    type: int
916 # active_block_range = 2
917
918 #    From how far blocks are sent to clients, stated in mapblocks (16 nodes).
919 #    type: int
920 # max_block_send_distance = 10
921
922 #    Maximum number of forceloaded mapblocks.
923 #    type: int
924 # max_forceloaded_blocks = 16
925
926 #    Interval of sending time of day to clients.
927 #    type: int
928 # time_send_interval = 5
929
930 #    Controls length of day/night cycle.
931 #    Examples: 72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged.
932 #    type: int
933 # time_speed = 72
934
935 #    Interval of saving important changes in the world, stated in seconds.
936 #    type: float
937 # server_map_save_interval = 5.3
938
939 #    Set the maximum character length of a chat message sent by clients. (0 to disable)
940 #    type: integer
941 # chat_message_max_size = 500
942
943 #    Limit a single player to send X messages per 10 seconds. (0 to disable)
944 #    type: float
945 # chat_message_limit_per_10sec = 8.0
946
947 #    Kick player if send more than X messages per 10 seconds. (0 to disable)
948 #    type: integer
949 # chat_message_limit_trigger_kick = 50
950
951 #    At this distance the server will aggressively optimize which blocks are sent to clients.
952 #    Small values potentially improve performance a lot, at the expense of visible rendering glitches.
953 #    (some blocks will not be rendered under water and in caves, as well as sometimes on land)
954 #    Setting this to a value greater than max_block_send_distance disables this optimization.
955 #    Stated in mapblocks (16 nodes)
956 #    type: int
957 # block_send_optimize_distance = 4
958
959 ### Physics
960
961 #    type: float
962 # movement_acceleration_default = 3
963
964 #    type: float
965 # movement_acceleration_air = 2
966
967 #    type: float
968 # movement_acceleration_fast = 10
969
970 #    type: float
971 # movement_speed_walk = 4
972
973 #    type: float
974 # movement_speed_crouch = 1.35
975
976 #    type: float
977 # movement_speed_fast = 20
978
979 #    type: float
980 # movement_speed_climb = 2
981
982 #    type: float
983 # movement_speed_jump = 6.5
984
985 #    type: float
986 # movement_speed_descend = 6
987
988 #    type: float
989 # movement_liquid_fluidity = 1
990
991 #    type: float
992 # movement_liquid_fluidity_smooth = 0.5
993
994 #    type: float
995 # movement_liquid_sink = 10
996
997 #    type: float
998 # movement_gravity = 9.81
999
1000 ### Advanced
1001
1002 #    Handling for deprecated lua api calls:
1003 #    -    legacy: (try to) mimic old behaviour (default for release).
1004 #    -    log: mimic and log backtrace of deprecated call (default for debug).
1005 #    -    error: abort on usage of deprecated call (suggested for mod developers).
1006 #    type: enum values: legacy, log, error
1007 # deprecated_lua_api_handling = legacy
1008
1009 #    Number of extra blocks that can be loaded by /clearobjects at once.
1010 #    This is a trade-off between sqlite transaction overhead and
1011 #    memory consumption (4096=100MB, as a rule of thumb).
1012 #    type: int
1013 # max_clearobjects_extra_loaded_blocks = 4096
1014
1015 #    How much the server will wait before unloading unused mapblocks.
1016 #    Higher value is smoother, but will use more RAM.
1017 #    type: int
1018 # server_unload_unused_data_timeout = 29
1019
1020 #    Maximum number of statically stored objects in a block.
1021 #    type: int
1022 # max_objects_per_block = 64
1023
1024 #    See http://www.sqlite.org/pragma.html#pragma_synchronous
1025 #    type: enum values: 0, 1, 2
1026 # sqlite_synchronous = 2
1027
1028 #    Length of a server tick and the interval at which objects are generally updated over network.
1029 #    type: float
1030 # dedicated_server_step = 0.1
1031
1032 #    Time in between active block management cycles
1033 #    type: float
1034 # active_block_mgmt_interval = 2.0
1035
1036 #    Length of time between ABM execution cycles
1037 #    type: float
1038 # abm_interval = 1.0
1039
1040 #    Length of time between NodeTimer execution cycles
1041 #    type: float
1042 # nodetimer_interval = 1.0
1043
1044 #    If enabled, invalid world data won't cause the server to shut down.
1045 #    Only enable this if you know what you are doing.
1046 #    type: bool
1047 # ignore_world_load_errors = false
1048
1049 #    Max liquids processed per step.
1050 #    type: int
1051 # liquid_loop_max = 100000
1052
1053 #    The time (in seconds) that the liquids queue may grow beyond processing
1054 #    capacity until an attempt is made to decrease its size by dumping old queue
1055 #    items.  A value of 0 disables the functionality.
1056 #    type: int
1057 # liquid_queue_purge_time = 0
1058
1059 #    Liquid update interval in seconds.
1060 #    type: float
1061 # liquid_update = 1.0
1062
1063 ## Mapgen
1064
1065 #    Name of map generator to be used when creating a new world.
1066 #    Creating a world in the main menu will override this.
1067 #    type: enum values: v5, v6, v7, flat, valleys, fractal, singlenode
1068 # mg_name = v6
1069
1070 #    Water surface level of the world.
1071 #    type: int
1072 # water_level = 1
1073
1074 #    From how far blocks are generated for clients, stated in mapblocks (16 nodes).
1075 #    type: int
1076 # max_block_generate_distance = 6
1077
1078 #    Where the map generator stops.
1079 #    Please note:
1080 #    -    Limited to 31000 (setting above has no effect)
1081 #    -    The map generator works in groups of 80x80x80 nodes (5x5x5 MapBlocks).
1082 #    -    Those groups have an offset of -32, -32 nodes from the origin.
1083 #    -    Only groups which are within the map_generation_limit are generated
1084 #    type: int min: 0 max: 31000
1085 # map_generation_limit = 31000
1086
1087 #    Global map generation attributes.
1088 #    In Mapgen v6 the 'decorations' flag controls all decorations except trees
1089 #    and junglegrass, in all other mapgens this flag controls all decorations.
1090 #    Flags that are not specified in the flag string are not modified from the default.
1091 #    Flags starting with 'no' are used to explicitly disable them.
1092 #    type: flags possible values: caves, dungeons, light, decorations, nocaves, nodungeons, nolight, nodecorations
1093 # mg_flags = caves,dungeons,light,decorations
1094
1095 ### Advanced
1096
1097 #    Size of chunks to be generated at once by mapgen, stated in mapblocks (16 nodes).
1098 #    type: int
1099 # chunksize = 5
1100
1101 #    Dump the mapgen debug infos.
1102 #    type: bool
1103 # enable_mapgen_debug_info = false
1104
1105 #    Maximum number of blocks that can be queued for loading.
1106 #    type: int
1107 # emergequeue_limit_total = 256
1108
1109 #    Maximum number of blocks to be queued that are to be loaded from file.
1110 #    Set to blank for an appropriate amount to be chosen automatically.
1111 #    type: int
1112 # emergequeue_limit_diskonly = 32
1113
1114 #    Maximum number of blocks to be queued that are to be generated.
1115 #    Set to blank for an appropriate amount to be chosen automatically.
1116 #    type: int
1117 # emergequeue_limit_generate = 32
1118
1119 #    Number of emerge threads to use. Make this field blank, or increase this number
1120 #    to use multiple threads. On multiprocessor systems, this will improve mapgen speed greatly
1121 #    at the cost of slightly buggy caves.
1122 #    type: int
1123 # num_emerge_threads = 1
1124
1125 #### Noise parameters and formats
1126
1127 #    Noise parameters can be specified as a set of positional values, for example:
1128 #    Offset, scale, (spread factors), seed offset, number of octaves, persistence, lacunarity
1129 # mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
1130 #    Or the group format can be used instead, for example:
1131 # mgv6_np_terrain_base = {
1132 #    offset      = -4,
1133 #    scale       = 20,
1134 #    spread      = (250, 250, 250),
1135 #    seed        = 82341,
1136 #    octaves     = 5,
1137 #    persistence = 0.6,
1138 #    lacunarity  = 2.0,
1139 #    flags       = "defaults"
1140 # }
1141 #    Only the group format supports noise flags which are needed for eased noise.
1142 #    Mgv5 uses eased noise for np_ground so this is shown in group format below.
1143
1144 #    Noise parameters for biome API temperature, humidity and biome blend.
1145 #    type: noise_params
1146 # mg_biome_np_heat = 50, 50, (750, 750, 750), 5349, 3, 0.5, 2.0
1147
1148 #    type: noise_params
1149 # mg_biome_np_heat_blend = 0, 1.5, (8, 8, 8), 13, 2, 1.0, 2.0
1150
1151 #    type: noise_params
1152 # mg_biome_np_humidity = 50, 50, (750, 750, 750), 842, 3, 0.5, 2.0
1153
1154 #    type: noise_params
1155 # mg_biome_np_humidity_blend = 0, 1.5, (8, 8, 8), 90003, 2, 1.0, 2.0
1156
1157 #### Mapgen v5
1158
1159 #    Controls width of tunnels, a smaller value creates wider tunnels.
1160 #    type: float
1161 # mgv5_cave_width = 0.125
1162
1163 #    type: noise_params
1164 # mgv5_np_filler_depth = 0, 1, (150, 150, 150), 261, 4, 0.7, 2.0
1165
1166 #    type: noise_params
1167 # mgv5_np_factor = 0, 1, (250, 250, 250), 920381, 3, 0.45, 2.0
1168
1169 #    type: noise_params
1170 # mgv5_np_height = 0, 10, (250, 250, 250), 84174, 4, 0.5, 2.0
1171
1172 #    type: noise_params
1173 # mgv5_np_cave1 = 0, 12, (50, 50, 50), 52534, 4, 0.5, 2.0
1174
1175 #    type: noise_params
1176 # mgv5_np_cave2 = 0, 12, (50, 50, 50), 10325, 4, 0.5, 2.0
1177
1178 #    Noise parameters in group format, unsupported by advanced settings
1179 #    menu but settable in minetest.conf.
1180 #    See documentation of noise parameter formats above.
1181 # mgv5_np_ground = {
1182 #    offset      = 0,
1183 #    scale       = 40,
1184 #    spread      = (80, 80, 80),
1185 #    seed        = 983240,
1186 #    octaves     = 4,
1187 #    persistence = 0.55,
1188 #    lacunarity  = 2.0,
1189 #    flags       = "eased"
1190 # }
1191
1192 #### Mapgen v6
1193
1194 #    Map generation attributes specific to Mapgen v6.
1195 #    When snowbiomes are enabled jungles are automatically enabled, the 'jungles' flag is ignored.
1196 #    Flags that are not specified in the flag string are not modified from the default.
1197 #    Flags starting with 'no' are used to explicitly disable them.
1198 #    type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, flat, trees, nojungles, nobiomeblend, nomudflow, nosnowbiomes, noflat, notrees
1199 # mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes,trees
1200
1201 #    Controls size of deserts and beaches in Mapgen v6.
1202 #    When snowbiomes are enabled 'mgv6_freq_desert' is ignored.
1203 #    type: float
1204 # mgv6_freq_desert = 0.45
1205
1206 #    type: float
1207 # mgv6_freq_beach = 0.15
1208
1209 #    type: noise_params
1210 # mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
1211
1212 #    type: noise_params
1213 # mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6, 2.0
1214
1215 #    type: noise_params
1216 # mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7, 2.0
1217
1218 #    type: noise_params
1219 # mgv6_np_height_select = 0.5, 1, (250, 250, 250), 4213, 5, 0.69, 2.0
1220
1221 #    type: noise_params
1222 # mgv6_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55, 2.0
1223
1224 #    type: noise_params
1225 # mgv6_np_beach = 0, 1, (250, 250, 250), 59420, 3, 0.50, 2.0
1226
1227 #    type: noise_params
1228 # mgv6_np_biome = 0, 1, (500, 500, 500), 9130, 3, 0.50, 2.0
1229
1230 #    type: noise_params
1231 # mgv6_np_cave = 6, 6, (250, 250, 250), 34329, 3, 0.50, 2.0
1232
1233 #    type: noise_params
1234 # mgv6_np_humidity = 0.5, 0.5, (500, 500, 500), 72384, 3, 0.50, 2.0
1235
1236 #    type: noise_params
1237 # mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66, 2.0
1238
1239 #    type: noise_params
1240 # mgv6_np_apple_trees = 0, 1, (100, 100, 100), 342902, 3, 0.45, 2.0
1241
1242 #### Mapgen v7
1243
1244 #    Map generation attributes specific to Mapgen v7.
1245 #    The 'ridges' flag enables the rivers.
1246 #    Floatlands are currently experimental and subject to change.
1247 #    Flags that are not specified in the flag string are not modified from the default.
1248 #    Flags starting with 'no' are used to explicitly disable them.
1249 #    type: flags possible values: mountains, ridges, floatlands,
1250 #    nomountains, noridges, nofloatlands
1251 # mgv7_spflags = mountains,ridges
1252
1253 #    Controls width of tunnels, a smaller value creates wider tunnels.
1254 #    type: float
1255 # mgv7_cave_width = 0.2
1256
1257 #    Controls the density of floatland mountain terrain.
1258 #    Is an offset added to the 'np_mountain' noise value.
1259 #    type: float
1260 # mgv7_float_mount_density = 0.6
1261
1262 #    Typical maximum height, above and below midpoint, of floatland mountain terrain.
1263 #    type: float
1264 # mgv7_float_mount_height = 128.0
1265
1266 #    Y-level of floatland midpoint and lake surface.
1267 #    type: int
1268 # mgv7_floatland_level = 1280
1269
1270 #    Y-level to which floatland shadows extend.
1271 #    type: int
1272 # mgv7_shadow_limit = 1024
1273
1274 #    type: noise_params
1275 # mgv7_np_terrain_base = 4, 70, (600, 600, 600), 82341, 5, 0.6, 2.0
1276
1277 #    type: noise_params
1278 # mgv7_np_terrain_alt = 4, 25, (600, 600, 600), 5934, 5, 0.6, 2.0
1279
1280 #    type: noise_params
1281 # mgv7_np_terrain_persist = 0.6, 0.1, (2000, 2000, 2000), 539, 3, 0.6, 2.0
1282
1283 #    type: noise_params
1284 # mgv7_np_height_select = -8, 16, (500, 500, 500), 4213, 6, 0.7, 2.0
1285
1286 #    type: noise_params
1287 # mgv7_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
1288
1289 #    type: noise_params
1290 # mgv7_np_mount_height = 256, 112, (1000, 1000, 1000), 72449, 3, 0.6, 2.0
1291
1292 #    type: noise_params
1293 # mgv7_np_ridge_uwater = 0, 1, (1000, 1000, 1000), 85039, 5, 0.6, 2.0
1294
1295 #    type: noise_params
1296 # mgv7_np_floatland_base = -0.6, 1.5, (600, 600, 600), 114, 5, 0.6, 2.0
1297
1298 #    type: noise_params
1299 # mgv7_np_float_base_height = 48, 24, (300, 300, 300), 907, 4, 0.7, 2.0
1300
1301 #    type: noise_params
1302 # mgv7_np_mountain = -0.6, 1, (250, 350, 250), 5333, 5, 0.63, 2.0
1303
1304 #    type: noise_params
1305 # mgv7_np_ridge = 0, 1, (100, 100, 100), 6467, 4, 0.75, 2.0
1306
1307 #    type: noise_params
1308 # mgv7_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
1309
1310 #    type: noise_params
1311 # mgv7_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
1312
1313 #### Mapgen flat
1314
1315 #    Map generation attributes specific to Mapgen flat.
1316 #    Occasional lakes and hills can be added to the flat world.
1317 #    Flags that are not specified in the flag string are not modified from the default.
1318 #    Flags starting with 'no' are used to explicitly disable them.
1319 #    type: flags possible values: lakes, hills, , nolakes, nohills
1320 # mgflat_spflags =
1321
1322 #    Y of flat ground.
1323 #    type: int
1324 # mgflat_ground_level = 8
1325
1326 #    Y of upper limit of large pseudorandom caves.
1327 #    type: int
1328 # mgflat_large_cave_depth = -33
1329
1330 #    Controls width of tunnels, a smaller value creates wider tunnels.
1331 #    type: float
1332 # mgflat_cave_width = 0.2
1333
1334 #    Terrain noise threshold for lakes.
1335 #    Controls proportion of world area covered by lakes.
1336 #    Adjust towards 0.0 for a larger proportion.
1337 #    type: float
1338 # mgflat_lake_threshold = -0.45
1339
1340 #    Controls steepness/depth of lake depressions.
1341 #    type: float
1342 # mgflat_lake_steepness = 48.0
1343
1344 #    Terrain noise threshold for hills.
1345 #    Controls proportion of world area covered by hills.
1346 #    Adjust towards 0.0 for a larger proportion.
1347 #    type: float
1348 # mgflat_hill_threshold = 0.45
1349
1350 #    Controls steepness/height of hills.
1351 #    type: float
1352 # mgflat_hill_steepness = 64.0
1353
1354 #    Determines terrain shape.
1355 #    The 3 numbers in brackets control the scale of the
1356 #    terrain, the 3 numbers should be identical.
1357 #    type: noise_params
1358 # mgflat_np_terrain = 0, 1, (600, 600, 600), 7244, 5, 0.6, 2.0
1359
1360 #    type: noise_params
1361 # mgflat_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
1362
1363 #    type: noise_params
1364 # mgflat_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
1365
1366 #    type: noise_params
1367 # mgflat_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
1368
1369 #### Mapgen fractal
1370
1371 #    Controls width of tunnels, a smaller value creates wider tunnels.
1372 #    type: float
1373 # mgfractal_cave_width = 0.2
1374
1375 #    Choice of 18 fractals from 9 formulas.
1376 #    1 = 4D "Roundy" mandelbrot set.
1377 #    2 = 4D "Roundy" julia set.
1378 #    3 = 4D "Squarry" mandelbrot set.
1379 #    4 = 4D "Squarry" julia set.
1380 #    5 = 4D "Mandy Cousin" mandelbrot set.
1381 #    6 = 4D "Mandy Cousin" julia set.
1382 #    7 = 4D "Variation" mandelbrot set.
1383 #    8 = 4D "Variation" julia set.
1384 #    9 = 3D "Mandelbrot/Mandelbar" mandelbrot set.
1385 #    10 = 3D "Mandelbrot/Mandelbar" julia set.
1386 #    11 = 3D "Christmas Tree" mandelbrot set.
1387 #    12 = 3D "Christmas Tree" julia set.
1388 #    13 = 3D "Mandelbulb" mandelbrot set.
1389 #    14 = 3D "Mandelbulb" julia set.
1390 #    15 = 3D "Cosine Mandelbulb" mandelbrot set.
1391 #    16 = 3D "Cosine Mandelbulb" julia set.
1392 #    17 = 4D "Mandelbulb" mandelbrot set.
1393 #    18 = 4D "Mandelbulb" julia set.
1394 #    type: int min: 1 max: 18
1395 # mgfractal_fractal = 1
1396
1397 #    Iterations of the recursive function.
1398 #    Controls the amount of fine detail.
1399 #    type: int
1400 # mgfractal_iterations = 11
1401
1402 #    Approximate (X,Y,Z) scale of fractal in nodes.
1403 #    type: v3f
1404 # mgfractal_scale = (4096.0, 1024.0, 4096.0)
1405
1406 #    (X,Y,Z) offset of fractal from world centre in units of 'scale'.
1407 #    Used to move a suitable spawn area of low land close to (0, 0).
1408 #    The default is suitable for mandelbrot sets, it needs to be edited for julia sets.
1409 #    Range roughly -2 to 2. Multiply by 'scale' for offset in nodes.
1410 #    type: v3f
1411 # mgfractal_offset = (1.79, 0.0, 0.0)
1412
1413 #    W co-ordinate of the generated 3D slice of a 4D fractal.
1414 #    Determines which 3D slice of the 4D shape is generated.
1415 #    Has no effect on 3D fractals.
1416 #    Range roughly -2 to 2.
1417 #    type: float
1418 # mgfractal_slice_w = 0.0
1419
1420 #    Julia set only: X component of hypercomplex constant determining julia shape.
1421 #    Range roughly -2 to 2.
1422 #    type: float
1423 # mgfractal_julia_x = 0.33
1424
1425 #    Julia set only: Y component of hypercomplex constant determining julia shape.
1426 #    Range roughly -2 to 2.
1427 #    type: float
1428 # mgfractal_julia_y = 0.33
1429
1430 #    Julia set only: Z component of hypercomplex constant determining julia shape.
1431 #    Range roughly -2 to 2.
1432 #    type: float
1433 # mgfractal_julia_z = 0.33
1434
1435 #    Julia set only: W component of hypercomplex constant determining julia shape.
1436 #    Has no effect on 3D fractals.
1437 #    Range roughly -2 to 2.
1438 #    type: float
1439 # mgfractal_julia_w = 0.33
1440
1441 #    type: noise_params
1442 # mgfractal_np_seabed = -14, 9, (600, 600, 600), 41900, 5, 0.6, 2.0
1443
1444 #    type: noise_params
1445 # mgfractal_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
1446
1447 #    type: noise_params
1448 # mgfractal_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
1449
1450 #    type: noise_params
1451 # mgfractal_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
1452
1453 #### Mapgen Valleys
1454
1455 ##### General
1456
1457 #    Map generation attributes specific to Mapgen Valleys.
1458 #    'altitude_chill' makes higher elevations colder, which may cause biome issues.
1459 #    'humid_rivers' modifies the humidity around rivers and in areas where water would tend to pool,
1460 #    it may interfere with delicately adjusted biomes.
1461 #    Flags that are not specified in the flag string are not modified from the default.
1462 #    Flags starting with 'no' are used to explicitly disable them.
1463 #    type: flags possible values: altitude_chill, noaltitude_chill, humid_rivers, nohumid_rivers
1464 # mg_valleys_spflags = altitude_chill,humid_rivers
1465
1466 #    The altitude at which temperature drops by 20C
1467 #    type: int
1468 # mgvalleys_altitude_chill = 90
1469
1470 #    Depth below which you'll find large caves.
1471 #    type: int
1472 # mgvalleys_large_cave_depth = -33
1473
1474 #    Creates unpredictable lava features in caves.
1475 #    These can make mining difficult. Zero disables them. (0-10)
1476 #    type: int
1477 # mgvalleys_lava_features = 0
1478
1479 #    Depth below which you'll find massive caves.
1480 #    type: int
1481 # mgvalleys_massive_cave_depth = -256
1482
1483 #    How deep to make rivers
1484 #    type: int
1485 # mgvalleys_river_depth = 4
1486
1487 #    How wide to make rivers
1488 #    type: int
1489 # mgvalleys_river_size = 5
1490
1491 #    Creates unpredictable water features in caves.
1492 #    These can make mining difficult. Zero disables them. (0-10)
1493 #    type: int
1494 # mgvalleys_water_features = 0
1495
1496 #    Controls width of tunnels, a smaller value creates wider tunnels.
1497 #    type: float
1498 # mgvalleys_cave_width = 0.2
1499
1500 ##### Noises
1501
1502 #    Caves and tunnels form at the intersection of the two noises
1503 #    type: noise_params
1504 # mgvalleys_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
1505
1506 #    Caves and tunnels form at the intersection of the two noises
1507 #    type: noise_params
1508 # mgvalleys_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
1509
1510 #    The depth of dirt or other filler
1511 #    type: noise_params
1512 # mgvalleys_np_filler_depth = 0, 1.2, (256, 256, 256), 1605, 3, 0.5, 2.0
1513
1514 #    Massive caves form here.
1515 #    type: noise_params
1516 # mgvalleys_np_massive_caves = 0, 1, (768, 256, 768), 59033, 6, 0.63, 2.0
1517
1518 #    River noise -- rivers occur close to zero
1519 #    type: noise_params
1520 # mgvalleys_np_rivers = 0, 1, (256, 256, 256), -6050, 5, 0.6, 2.0
1521
1522 #    Base terrain height
1523 #    type: noise_params
1524 # mgvalleys_np_terrain_height = -10, 50, (1024, 1024, 1024), 5202, 6, 0.4, 2.0
1525
1526 #    Raises terrain to make valleys around the rivers
1527 #    type: noise_params
1528 # mgvalleys_np_valley_depth = 5, 4, (512, 512, 512), -1914, 1, 1.0, 2.0
1529
1530 #    Slope and fill work together to modify the heights
1531 #    type: noise_params
1532 # mgvalleys_np_inter_valley_fill = 0, 1, (256, 512, 256), 1993, 6, 0.8, 2.0
1533
1534 #    Amplifies the valleys
1535 #    type: noise_params
1536 # mgvalleys_np_valley_profile = 0.6, 0.5, (512, 512, 512), 777, 1, 1.0, 2.0
1537
1538 #    Slope and fill work together to modify the heights
1539 #    type: noise_params
1540 # mgvalleys_np_inter_valley_slope = 0.5, 0.5, (128, 128, 128), 746, 1, 1.0, 2.0
1541
1542 ## Security
1543
1544 #    Prevent mods from doing insecure things like running shell commands.
1545 #    type: bool
1546 # secure.enable_security = true
1547
1548 #    Comma-separated list of trusted mods that are allowed to access insecure
1549 #    functions even when mod security is on (via request_insecure_environment()).
1550 #    type: string
1551 # secure.trusted_mods =
1552
1553 #    Comma-separated list of mods that are allowed to access HTTP APIs, which
1554 #    allow them to upload and download data to/from the internet.
1555 #    type: string
1556 # secure.http_mods =
1557
1558 ## Advanced
1559
1560 ### Profiling
1561
1562 #    Load the game profiler to collect game profiling data.
1563 #    Provides a /profiler command to access the compiled profile.
1564 #    Useful for mod developers and server operators.
1565 #    type: bool
1566 # profiler.load = false
1567
1568 #    The default format in which profiles are being saved,
1569 #    when calling `/profiler save [format]` without format.
1570 #    type: enum values: txt, csv, lua, json, json_pretty
1571 # profiler.default_report_format = txt
1572
1573 #    The file path relative to your worldpath in which profiles will be saved to.
1574 #
1575 #    type: string
1576 # profiler.report_path = ""
1577
1578 #### Instrumentation
1579
1580 #    Instrument the methods of entities on registration.
1581 #    type: bool
1582 # instrument.entity = true
1583
1584 #    Instrument the action function of Active Block Modifiers on registration.
1585 #    type: bool
1586 # instrument.abm = true
1587
1588 #    Instrument the action function of Loading Block Modifiers on registration.
1589 #    type: bool
1590 # instrument.lbm = true
1591
1592 #    Instrument chatcommands on registration.
1593 #    type: bool
1594 # instrument.chatcommand = true
1595
1596 #    Instrument global callback functions on registration.
1597 #    (anything you pass to a minetest.register_*() function)
1598 #    type: bool
1599 # instrument.global_callback = true
1600
1601 ##### Advanced
1602
1603 #    Instrument builtin.
1604 #    This is usually only needed by core/builtin contributors
1605 #    type: bool
1606 # instrument.builtin = false
1607
1608 #    Have the profiler instrument itself:
1609 #    * Instrument an empty function.
1610 #    This estimates the overhead, that instrumentation is adding (+1 function call).
1611 #    * Instrument the sampler being used to update the statistics.
1612 #    type: bool
1613 # instrument.profiler = false
1614
1615 #
1616 # Client and Server
1617 #
1618
1619 #    Name of the player.
1620 #    When running a server, clients connecting with this name are admins.
1621 #    When starting from the main menu, this is overridden.
1622 #    type: string
1623 # name =
1624
1625 #    Set the language. Leave empty to use the system language.
1626 #    A restart is required after changing this.
1627 #    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
1628 # language =
1629
1630 #    Level of logging to be written to debug.txt:
1631 #    -    <nothing> (no logging)
1632 #    -    none (messages with no level)
1633 #    -    error
1634 #    -    warning
1635 #    -    action
1636 #    -    info
1637 #    -    verbose
1638 #    type: enum values: , warning, action, info, verbose
1639 # debug_log_level = action
1640
1641 #    IPv6 support.
1642 #    type: bool
1643 # enable_ipv6 = true
1644
1645 ## Advanced
1646
1647 #    Default timeout for cURL, stated in milliseconds.
1648 #    Only has an effect if compiled with cURL.
1649 #    type: int
1650 # curl_timeout = 5000
1651
1652 #    Limits number of parallel HTTP requests. Affects:
1653 #    -    Media fetch if server uses remote_media setting.
1654 #    -    Serverlist download and server announcement.
1655 #    -    Downloads performed by main menu (e.g. mod manager).
1656 #    Only has an effect if compiled with cURL.
1657 #    type: int
1658 # curl_parallel_limit = 8
1659
1660 #    Maximum time in ms a file download (e.g. a mod download) may take.
1661 #    type: int
1662 # curl_file_download_timeout = 300000
1663
1664 #    Makes DirectX work with LuaJIT. Disable if it causes troubles.
1665 #    type: bool
1666 # high_precision_fpu = true
1667
1668 #    Replaces the default main menu with a custom one.
1669 #    type: string
1670 # main_menu_script =
1671
1672 #    type: int
1673 # main_menu_game_mgr = 0
1674
1675 #    type: int
1676 # main_menu_mod_mgr = 1
1677
1678 #    type: string
1679 # modstore_download_url = https://forum.minetest.net/media/
1680
1681 #    type: string
1682 # modstore_listmods_url = https://forum.minetest.net/mmdb/mods/
1683
1684 #    type: string
1685 # modstore_details_url = https://forum.minetest.net/mmdb/mod/*/
1686
1687 #    Print the engine's profiling data in regular intervals (in seconds). 0 = disable. Useful for developers.
1688 #    type: int
1689 # profiler_print_interval = 0
1690