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