]> git.lizzy.rs Git - dragonfireclient.git/blob - minetest.conf.example
Mapgen: Add flat mapgen in hidden form
[dragonfireclient.git] / minetest.conf.example
1 #    This file contains a list of all available settings and their default value for minetest.conf
2
3 #    By default, all the settings are commented and not functional.
4 #    Uncomment settings by removing the preceding #.
5
6 #    minetest.conf is read by default from:
7 #    ../minetest.conf
8 #    ../../minetest.conf
9 #    Any other path can be chosen by passing the path as a parameter
10 #    to the program, eg. "minetest.exe --config ../minetest.conf.example".
11
12 #    Further documentation:
13 #    http://wiki.minetest.net/
14
15 #
16 # 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 moving and looking around.
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 #    Key for moving the player forward.
87 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
88 #    type: key
89 # keymap_forward = KEY_KEY_W
90
91 #    Key for moving the player backward.
92 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
93 #    type: key
94 # keymap_backward = KEY_KEY_S
95
96 #    Key for moving the player left.
97 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
98 #    type: key
99 # keymap_left = KEY_KEY_A
100
101 #    Key for moving the player right.
102 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
103 #    type: key
104 # keymap_right = KEY_KEY_D
105
106 #    Key for jumping.
107 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
108 #    type: key
109 # keymap_jump = KEY_SPACE
110
111 #    Key for sneaking.
112 #    Also used for climbing down and descending in water if aux1_descends is disabled.
113 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
114 #    type: key
115 # keymap_sneak = KEY_LSHIFT
116
117 #    Key for opening the inventory.
118 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
119 #    type: key
120 # keymap_inventory = KEY_KEY_I
121
122 #    Key for moving fast in fast mode.
123 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
124 #    type: key
125 # keymap_special1 = KEY_KEY_E
126
127 #    Key for opening the chat window.
128 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
129 #    type: key
130 # keymap_chat = KEY_KEY_T
131
132 #    Key for opening the chat window to type commands.
133 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
134 #    type: key
135 # keymap_cmd = /
136
137 #    Key for opening the chat console.
138 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
139 #    type: key
140 # keyman_console = KEY_F10
141
142 #    Key for toggling unlimited view range.
143 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
144 #    type: key
145 # keymap_rangeselect = KEY_KEY_R
146
147 #    Key for toggling flying.
148 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
149 #    type: key
150 # keymap_freemove = KEY_KEY_K
151
152 #    Key for toggling fast mode.
153 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
154 #    type: key
155 # keymap_fastmove = KEY_KEY_J
156
157 #    Key for toggling noclip mode.
158 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
159 #    type: key
160 # keymap_noclip = KEY_KEY_H
161
162 #    Key for toggling cinematic mode.
163 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
164 #    type: key
165 # keymap_cinematic = KEY_F8
166
167 #    Key for toggling display of minimap.
168 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
169 #    type: key
170 # keymap_minimap = KEY_F9
171
172 #    Key for taking screenshots.
173 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
174 #    type: key
175 # keymap_screenshot = KEY_F12
176
177 #    Key for dropping the currently selected item.
178 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
179 #    type: key
180 # keymap_drop = KEY_KEY_Q
181
182 #    Key for toggling the display of the HUD.
183 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
184 #    type: key
185 # keymap_toggle_hud = KEY_F1
186
187 #    Key for toggling the display of the chat.
188 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
189 #    type: key
190 # keymap_toggle_chat = KEY_F2
191
192 #    Key for toggling the display of the fog.
193 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
194 #    type: key
195 # keymap_toggle_force_fog_off = KEY_F3
196
197 #    Key for toggling the camrea update. Only used for development
198 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
199 #    type: key
200 # keymap_toggle_update_camera = 
201
202 #    Key for toggling the display of debug info.
203 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
204 #    type: key
205 # keymap_toggle_debug = KEY_F5
206
207 #    Key for toggling the display of the profiler. Used for development.
208 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
209 #    type: key
210 # keymap_toggle_profiler = KEY_F6
211
212 #    Key for switching between first- and third-person camera.
213 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
214 #    type: key
215 # keymap_camera_mode = KEY_F7
216
217 #    Key for increasing the viewing range. Modifies the minimum viewing range.
218 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
219 #    type: key
220 # keymap_increase_viewing_range_min = +
221
222 #    Key for decreasing the viewing range. Modifies the minimum viewing range.
223 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
224 #    type: key
225 # keymap_decrease_viewing_range_min = -
226
227 #    Key for printing debug stacks. Used for development.
228 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
229 #    type: key
230 # keymap_print_debug_stacks = KEY_KEY_P
231
232 ## Network
233
234 #    Address to connect to.
235 #    Leave this blank to start a local server.
236 #    Note that the address field in the main menu overrides this setting.
237 #    type: string
238 # address = 
239
240 #    Port to connect to (UDP).
241 #    Note that the port field in the main menu overrides this setting.
242 #    type: int min: 1 max: 65535
243 # remote_port = 30000
244
245 #    Save the map received by the client on disk.
246 #    type: bool
247 # enable_local_map_saving = false
248
249 #    Enable usage of remote media server (if provided by server).
250 #    Remote servers offer a significantly faster way to download media (e.g. textures)
251 #    when connecting to the server.
252 #    type: bool
253 # enable_remote_media_server = true
254
255 #    URL to the server list displayed in the Multiplayer Tab.
256 #    type: string
257 # serverlist_url = servers.minetest.net
258
259 #    File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab.
260 #    type: string
261 # serverlist_file = favoriteservers.txt
262
263 ## Graphics
264
265 ### In-Game
266
267 #### Basic
268
269 #    Whether to fog out the end of the visible area.
270 #    type: bool
271 # enable_fog = true
272
273 #    Enable a bit lower water surface, so it doesn't "fill" the node completely.
274 #    Note that this is not quite optimized and that smooth lighting on the
275 #    water surface doesn't work with this.
276 #    type: bool
277 # new_style_water = false
278
279 #    Leaves style:
280 #    -   Fancy:  all faces visible
281 #    -   Simple: only outer faces, if defined special_tiles are used
282 #    -   Opaque: disable transparency
283 #    type: enum values: fancy, simple, opaque
284 # leaves_style = fancy
285
286 #    Connects glass if supported by node.
287 #    type: bool
288 # connected_glass = false
289
290 #    Enable smooth lighting with simple ambient occlusion.
291 #    Disable for speed or for different looks.
292 #    type: bool
293 # smooth_lighting = true
294
295 #    Clouds are a client side effect.
296 #    type: bool
297 # enable_clouds = true
298
299 #    Use 3D cloud look instead of flat.
300 #    type: bool
301 # enable_3d_clouds = true
302
303 #### Filtering
304
305 #    Use mip mapping to scale textures. May slightly increase performance.
306 #    type: bool
307 # mip_map = false
308
309 #    Use anisotropic filtering when viewing at textures from an angle.
310 #    type: bool
311 # anisotropic_filter = false
312
313 #    Use bilinear filtering when scaling textures.
314 #    type: bool
315 # bilinear_filter = false
316
317 #    Use trilinear filtering when scaling textures.
318 #    type: bool
319 # trilinear_filter = false
320
321 #    Filtered textures can blend RGB values with fully-transparent neighbors,
322 #    which PNG optimizers usually discard, sometimes resulting in a dark or
323 #    light edge to transparent textures.  Apply this filter to clean that up
324 #    at texture load time.
325 #    type: bool
326 # texture_clean_transparent = false
327
328 #    When using bilinear/trilinear/anisotropic filters, low-resolution textures
329 #    can be blurred, so automatically upscale them with nearest-neighbor
330 #    interpolation to preserve crisp pixels.  This sets the minimum texture size
331 #    for the upscaled textures; higher values look sharper, but require more
332 #    memory.  Powers of 2 are recommended.  Setting this higher than 1 may not
333 #    have a visible effect unless bilinear/trilinear/anisotropic filtering is
334 #    enabled.
335 #    type: int
336 # texture_min_size = 64
337
338 #    Pre-generate all item visuals used in the inventory.
339 #    This increases startup time, but runs smoother in-game.
340 #    The generated textures can easily exceed your VRAM, causing artifacts in the inventory.
341 #    type: bool
342 # preload_item_visuals = false
343
344 #    Experimental option, might cause visible spaces between blocks
345 #    when set to higher number than 0.
346 #    type: enum values: 0, 1, 2, 4, 8, 16
347 # fsaa = 0
348
349 #### Shaders
350
351 #    Shaders allow advanced visul effects and may increase performance on some video cards.
352 #    Thy only work with the OpenGL video backend.
353 #    type: bool
354 # enable_shaders = true
355
356 ##### Bumpmapping
357
358 #    Enables bumpmapping for textures. Normalmaps need to be supplied by the texture pack
359 #    or need to be auto-generated.
360 #    Requires shaders to be enabled.
361 #    type: bool
362 # enable_bumpmapping = false
363
364 #    Enables on the fly normalmap generation (Emboss effect).
365 #    Requires bumpmapping to be enabled.
366 #    type: bool
367 # generate_normalmaps = false
368
369 #    Strength of generated normalmaps.
370 #    type: float
371 # normalmaps_strength = 0.6
372
373 #    Defines sampling step of texture.
374 #    A higher value results in smoother normal maps.
375 #    type: int min: 0 max: 2
376 # normalmaps_smooth = 0
377
378 ##### Parallax Occlusion
379
380 #    Enables parallax occlusion mapping.
381 #    Requires shaders to be enabled.
382 #    type: bool
383 # enable_parallax_occlusion = false
384
385 #    0 = parallax occlusion with slope information (faster).
386 #    1 = relief mapping (slower, more accurate).
387 #    type: int min: 0 max: 1
388 # parallax_occlusion_mode = 1
389
390 #    Strength of parallax.
391 #    type: float
392 # 3d_parallax_strength = 0.025
393
394 #    Number of parallax occlusion iterations.
395 #    type: int
396 # parallax_occlusion_iterations = 4
397
398 #    Overall scale of parallax occlusion effect.
399 #    type: float
400 # parallax_occlusion_scale = 0.08
401
402 #    Overall bias of parallax occlusion effect, usually scale/2.
403 #    type: float
404 # parallax_occlusion_bias = 0.04
405
406 ##### Waving Nodes
407
408 #    Set to true enables waving water.
409 #    Requires shaders to be enabled.
410 #    type: bool
411 # enable_waving_water = false
412
413 #    type: float
414 # water_wave_height = 1.0
415
416 #    type: float
417 # water_wave_length = 20.0
418
419 #    type: float
420 # water_wave_speed = 5.0
421
422 #    Set to true enables waving leaves.
423 #    Requires shaders to be enabled.
424 #    type: bool
425 # enable_waving_leaves = false
426
427 #    Set to true enables waving plants.
428 #    Requires shaders to be enabled.
429 #    type: bool
430 # enable_waving_plants = false
431
432 #### Advanced
433
434 #    Minimum wanted FPS.
435 #    The amount of rendered stuff is dynamically set according to this. and viewing range min and max.
436 #    type: int
437 # wanted_fps = 30
438
439 #    If FPS would go higher than this, limit it by sleeping
440 #    to not waste CPU power for no benefit.
441 #    type: int
442 # fps_max = 60
443
444 #    Maximum FPS when game is paused.
445 #    type: int
446 # pause_fps_max = 20
447
448 #    The allowed adjustment range for the automatic rendering range adjustment.
449 #    Set this to be equal to viewing range minimum to disable the auto-adjustment algorithm.
450 #    type: int
451 # viewing_range_nodes_max = 160
452
453 #    The allowed adjustment range for the automatic rendering range adjustment.
454 #    Set this to be equal to viewing range minimum to disable the auto-adjustment algorithm.
455 #    type: int
456 # viewing_range_nodes_min = 35
457
458 #    Vertical initial window size.
459 #    type: int
460 # screenW = 800
461
462 #    Horizontal initial window size.
463 #    type: int
464 # screenH = 600
465
466 #    Fullscreen mode.
467 #    type: bool
468 # fullscreen = false
469
470 #    Bits per pixel (aka color depth) in fullscreen mode.
471 #    type: int
472 # fullscreen_bpp = 24
473
474 #    Vertical screen synchronization.
475 #    type: bool
476 # vsync = false
477
478 #    Field of view in degrees.
479 #    type: int min: 30 max: 160
480 # fov = 72
481
482 #    Adjust the gamma encoding for the light tables. Lower numbers are brighter.
483 #    This setting is for the client only and is ignored by the server.
484 #    type: float min: 1 max: 3
485 # display_gamma = 1.8
486
487 #    Path to texture directory. All textures are first searched from here.
488 #    type: path
489 # texture_path = 
490
491 #    The rendering back-end for Irrlicht.
492 #    type: enum values: null, software, burningsvideo, direct3d8, direct3d9, opengl
493 # video_driver = opengl
494
495 #    Height on which clouds are appearing.
496 #    type: int
497 # cloud_height = 120
498
499 #    Radius of cloud area stated in number of 64 node cloud squares.
500 #    Values larger than 26 will start to produce sharp cutoffs at cloud area corners.
501 #    type: int
502 # cloud_radius = 12
503
504 #    Multiplier for view bobbing.
505 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
506 #    type: float
507 # view_bobbing_amount = 1.0
508
509 #    Multiplier for fall bobbing.
510 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
511 #    type: float
512 # fall_bobbing_amount = 0.0
513
514 #    3D support.
515 #    Currently supported:
516 #    -    none: no 3d output.
517 #    -    anaglyph: cyan/magenta color 3d.
518 #    -    interlaced: odd/even line based polarisation screen support.
519 #    -    topbottom: split screen top/bottom.
520 #    -    sidebyside: split screen side by side.
521 #    type: enum values: none, anaglyph, interlaced, topbottom, sidebyside
522 # 3d_mode = none
523
524 #    In-game chat console background color (R,G,B).
525 #    type: string
526 # console_color = (0,0,0)
527
528 #    In-game chat console background alpha (opaqueness, between 0 and 255).
529 #    type: int min: 0 max: 255
530 # console_alpha = 200
531
532 #    Selection box border color (R,G,B).
533 #    type: string
534 # selectionbox_color = (0,0,0)
535
536 #    Width of the selectionbox's lines around nodes.
537 #    type: int min: 1 max: 5
538 # selectionbox_width = 2
539
540 #    Crosshair color (R,G,B).
541 #    type: string
542 # crosshair_color = (255,255,255)
543
544 #    Crosshair alpha (opaqueness, between 0 and 255).
545 #    type: int min: 0 max: 255
546 # crosshair_alpha = 255
547
548 #    Whether node texture animations should be desynchronized per mapblock.
549 #    type: bool
550 # desynchronize_mapblock_texture_animation = true
551
552 #    Maximum proportion of current window to be used for hotbar.
553 #    Useful if there's something to be displayed right or left of hotbar.
554 #    type: float
555 # hud_hotbar_max_width = 1.0
556
557 #    Enable selection highlighting for nodes (disables selectionbox).
558 #    type: bool
559 # enable_node_highlighting = false
560
561 #    Enables caching of facedir rotated meshes.
562 #    type: bool
563 # enable_mesh_cache = false
564
565 #    Enables minimap.
566 #    type: bool
567 # enable_minimap = true
568
569 #    Shape of the minimap. Enabled = round, disabled = square.
570 #    type: bool
571 # minimap_shape_round = true
572
573 #    True = 256
574 #    False = 128
575 #    Useable to make minimap smoother on slower machines.
576 #    type: bool
577 # minimap_double_scan_height = true
578
579 #    Make fog and sky colors depend on daytime (dawn/sunset) and view direction.
580 #    type: bool
581 # directional_colored_fog = true
582
583 #    The strength (darkness) of node ambient-occlusion shading.
584 #    Lower is darker, Higher is lighter. The valid range of values for this
585 #    setting is 0.25 to 4.0 inclusive. If the value is out of range it will be
586 #    set to the nearest valid value.
587 #    type: float min: 0.25 max: 4
588 # ambient_occlusion_gamma = 2.2
589
590 ### Menus
591
592 #    Use a cloud animation for the main menu background.
593 #    type: bool
594 # menu_clouds = true
595
596 #    Scale gui by a user specified value.
597 #    Use a nearest-neighbor-anti-alias filter to scale the GUI.
598 #    This will smooth over some of the rough edges, and blend
599 #    pixels when scaling down, at the cost of blurring some
600 #    edge pixels when images are scaled by non-integer sizes.
601 #    type: float
602 # gui_scaling = 1.0
603
604 #    When gui_scaling_filter is true, all GUI images need to be
605 #    filtered in software, but some images are generated directly
606 #    to hardware (e.g. render-to-texture for nodes in inventory).
607 #    type: bool
608 # gui_scaling_filter = false
609
610 #    When gui_scaling_filter_txr2img is true, copy those images
611 #    from hardware to software for scaling.  When false, fall back
612 #    to the old scaling method, for video drivers that don't
613 #    propery support downloading textures back from hardware.
614 #    type: bool
615 # gui_scaling_filter_txr2img = true
616
617 #    Delay showing tooltips, stated in milliseconds.
618 #    type: int
619 # tooltip_show_delay = 400
620
621 #    Whether freetype fonts are used, requires freetype support to be compiled in.
622 #    type: bool
623 # freetype = true
624
625 #    Path to TrueTypeFont or bitmap.
626 #    type: path
627 # font_path = fonts/liberationsans.ttf
628
629 #    type: int
630 # font_size = 15
631
632 #    Font shadow offset, if 0 then shadow will not be drawn.
633 #    type: int
634 # font_shadow = 1
635
636 #    Font shadow alpha (opaqueness, between 0 and 255).
637 #    type: int min: 0 max: 255
638 # font_shadow_alpha = 128
639
640 #    type: path
641 # mono_font_path = fonts/liberationmono.ttf
642
643 #    type: int
644 # mono_font_size = 15
645
646 #    This font will be used for certain languages.
647 #    type: path
648 # fallback_font_path = fonts/DroidSansFallbackFull.ttf
649
650 #    type: int
651 # fallback_font_size = 15
652
653 #    type: int
654 # fallback_font_shadow = 1
655
656 #    type: int min: 0 max: 255
657 # fallback_font_shadow_alpha = 128
658
659 #    Path to save screenshots at.
660 #    type: path
661 # screenshot_path = 
662
663 ### Advanced
664
665 #    Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k screens.
666 #    type: int
667 # screen_dpi = 72
668
669 ## Sound
670
671 #    type: bool
672 # enable_sound = true
673
674 #    type: float min: 0 max: 1
675 # sound_volume = 0.7
676
677 ## Advanced
678
679 #    Timeout for client to remove unused map data from memory.
680 #    type: int
681 # client_unload_unused_data_timeout = 600
682
683 #    Maximum number of mapblocks for client to be kept in memory.
684 #    Set to -1 for unlimited amount.
685 #    type: int
686 # client_mapblock_limit = 5000
687
688 #    Whether to show the client debug info (has the same effect as hitting F5).
689 #    type: bool
690 # show_debug = false
691
692 #
693 # Server / Singleplayer
694 #
695
696 #    Name of the server, to be displayed when players join and in the serverlist.
697 #    type: string
698 # server_name = Minetest server
699
700 #    Description of server, to be displayed when players join and in the serverlist.
701 #    type: string
702 # server_description = mine here
703
704 #    Domain name of server, to be displayed in the serverlist.
705 #    type: string
706 # server_address = game.minetest.net
707
708 #    Homepage of server, to be displayed in the serverlist.
709 #    type: string
710 # server_url = http://minetest.net
711
712 #    Automaticaly report to the serverlist.
713 #    type: bool
714 # server_announce = false
715
716 #    Announce to this serverlist.
717 #    If you want to announce your ipv6 address, use  serverlist_url = v6.servers.minetest.net.
718 #    type: string
719 # serverlist_url = servers.minetest.net
720
721 ## Network
722
723 #    Network port to listen (UDP).
724 #    This value will be overridden when starting from the main menu.
725 #    type: int
726 # port = 30000
727
728 #    The network interface that the server listens on.
729 #    type: string
730 # bind_address = 
731
732 #    Enable to disallow old clients from connecting.
733 #    Older clients are compatible in the sense that they will not crash when connecting
734 #    to new servers, but they may not support all new features that you are expecting.
735 #    type: bool
736 # strict_protocol_version_checking = false
737
738 #    Specifies URL from which client fetches media instead of using UDP.
739 #    $filename should be accessible from $remote_media$filename via cURL
740 #    (obviously, remote_media should end with a slash).
741 #    Files that are not present will be fetched the usual way.
742 #    type: string
743 # remote_media = 
744
745 #    Enable/disable running an IPv6 server.  An IPv6 server may be restricted
746 #    to IPv6 clients, depending on system configuration.
747 #    Ignored if bind_address is set.
748 #    type: bool
749 # ipv6_server = false
750
751 ### Advanced
752
753 #    How many blocks are flying in the wire simultaneously per client.
754 #    type: int
755 # max_simultaneous_block_sends_per_client = 10
756
757 #    How many blocks are flying in the wire simultaneously for the whole server.
758 #    type: int
759 # max_simultaneous_block_sends_server_total = 40
760
761 #    To reduce lag, block transfers are slowed down when a player is building something.
762 #    This determines how long they are slowed down after placing or removing a node.
763 #    type: float
764 # full_block_send_enable_min_time_from_building = 2.0
765
766 #    Maximum number of packets sent per send step, if you have a slow connection
767 #    try reducing it, but don't reduce it to a number below double of targeted
768 #    client number.
769 #    type: int
770 # max_packets_per_iteration = 1024
771
772 ## Game
773
774 #    Default game when creating a new world.
775 #    This will be overridden when creating a world from the main menu.
776 #    type: string
777 # default_game = minetest
778
779 #    Message of the day displayed to players connecting.
780 #    type: string
781 # motd = 
782
783 #    Maximum number of players that can connect simultaneously.
784 #    type: int
785 # max_users = 15
786
787 #    World directory (everything in the world is stored here).
788 #    Not needed if starting from the main menu.
789 #    type: path
790 # map-dir = 
791
792 #    Time in seconds for item entity (dropped items) to live.
793 #    Setting it to -1 disables the feature.
794 #    type: int
795 # item_entity_ttl = 900
796
797 #    Enable players getting damage and dying.
798 #    type: bool
799 # enable_damage = false
800
801 #    A chosen map seed for a new map, leave empty for random.
802 #    Will be overridden when creating a new world in the main menu.
803 #    type: string
804 # fixed_map_seed = 
805
806 #    New users need to input this password.
807 #    type: string
808 # default_password = 
809
810 #    The privileges that new users automatically get.
811 #    See /privs in game for a full list on your server and mod configuration.
812 #    type: string
813 # default_privs = interact, shout
814
815 #    Whether players are shown to clients without any range limit.
816 #    Deprecated, use the setting player_transfer_distance instead.
817 #    type: bool
818 # unlimited_player_transfer_distance = true
819
820 #    Defines the maximal player transfer distance in blocks (0 = unlimited).
821 #    type: int
822 # player_transfer_distance = 0
823
824 #    Whether to allow players to damage and kill each other.
825 #    type: bool
826 # enable_pvp = true
827
828 #    If this is set, players will always (re)spawn at the given position.
829 #    type: string
830 # static_spawnpoint = 
831
832 #    Maximum distance above water level for player spawn.
833 #    Larger values result in spawn points closer to (x = 0, z = 0).
834 #    Smaller values may result in a suitable spawn point not being found,
835 #    resulting in a spawn at (0, 0, 0) possibly buried underground.
836 #    type: int
837 # vertical_spawn_range = 16
838
839 #    If enabled, new players cannot join with an empty password.
840 #    type: bool
841 # disallow_empty_password = false
842
843 #    If enabled, disable cheat prevention in multiplayer.
844 #    type: bool
845 # disable_anticheat = false
846
847 #    If enabled, actions are recorded for rollback.
848 #    This option is only read when server starts.
849 #    type: bool
850 # enable_rollback_recording = false
851
852 #    A message to be displayed to all clients when the server shuts down.
853 #    type: string
854 # kick_msg_shutdown = Server shutting down.
855
856 #    A message to be displayed to all clients when the server crashes.
857 #    type: string
858 # kick_msg_crash = This server has experienced an internal error. You will now be disconnected.
859
860 #    Whether to ask clients to reconnect after a (Lua) crash.
861 #    Set this to true if your server is set up to restart automatically.
862 #    type: bool
863 # ask_reconnect_on_crash = false
864
865 #    From how far clients know about objects, stated in mapblocks (16 nodes).
866 #    type: int
867 # active_object_send_range_blocks = 3
868
869 #    How large area of blocks are subject to the active block stuff, stated in mapblocks (16 nodes).
870 #    In active blocks objects are loaded and ABMs run.
871 #    type: int
872 # active_block_range = 2
873
874 #    From how far blocks are sent to clients, stated in mapblocks (16 nodes).
875 #    type: int
876 # max_block_send_distance = 10
877
878 #    Maximum number of forceloaded mapblocks.
879 #    type: int
880 # max_forceloaded_blocks = 16
881
882 #    Interval of sending time of day to clients.
883 #    type: int
884 # time_send_interval = 5
885
886 #    Controls length of day/night cycle.
887 #    Examples: 72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged.
888 #    type: int
889 # time_speed = 72
890
891 #    Interval of saving important changes in the world, stated in seconds.
892 #    type: float
893 # server_map_save_interval = 5.3
894
895 ### Physics
896
897 #    type: float
898 # movement_acceleration_default = 3
899
900 #    type: float
901 # movement_acceleration_air = 2
902
903 #    type: float
904 # movement_acceleration_fast = 10
905
906 #    type: float
907 # movement_speed_walk = 4
908
909 #    type: float
910 # movement_speed_crouch = 1.35
911
912 #    type: float
913 # movement_speed_fast = 20
914
915 #    type: float
916 # movement_speed_climb = 2
917
918 #    type: float
919 # movement_speed_jump = 6.5
920
921 #    type: float
922 # movement_speed_descend = 6
923
924 #    type: float
925 # movement_liquid_fluidity = 1
926
927 #    type: float
928 # movement_liquid_fluidity_smooth = 0.5
929
930 #    type: float
931 # movement_liquid_sink = 10
932
933 #    type: float
934 # movement_gravity = 9.81
935
936 ### Advanced
937
938 #    Handling for deprecated lua api calls:
939 #    -    legacy: (try to) mimic old behaviour (default for release).
940 #    -    log: mimic and log backtrace of deprecated call (default for debug).
941 #    -    error: abort on usage of deprecated call (suggested for mod developers).
942 #    type: enum values: legacy, log, error
943 # deprecated_lua_api_handling = legacy
944
945 #    Useful for mod developers.
946 #    type: bool
947 # mod_profiling = false
948
949 #    Detailed mod profile data. Useful for mod developers.
950 #    type: bool
951 # detailed_profiling = false
952
953 #    Profiler data print interval. 0 = disable. Useful for developers.
954 #    type: int
955 # profiler_print_interval = 0
956
957 #    Number of extra blocks that can be loaded by /clearobjects at once.
958 #    This is a trade-off between sqlite transaction overhead and
959 #    memory consumption (4096=100MB, as a rule of thumb).
960 #    type: int
961 # max_clearobjects_extra_loaded_blocks = 4096
962
963 #    How much the server will wait before unloading unused mapblocks.
964 #    Higher value is smoother, but will use more RAM.
965 #    type: int
966 # server_unload_unused_data_timeout = 29
967
968 #    Maximum number of statically stored objects in a block.
969 #    type: int
970 # max_objects_per_block = 49
971
972 #    See http://www.sqlite.org/pragma.html#pragma_synchronous
973 #    type: enum values: 0, 1, 2
974 # sqlite_synchronous = 2
975
976 #    Length of a server tick and the interval at which objects are generally updated over network.
977 #    type: float
978 # dedicated_server_step = 0.1
979
980 #    If enabled, invalid world data won't cause the server to shut down.
981 #    Only enable this if you know what you are doing.
982 #    type: bool
983 # ignore_world_load_errors = false
984
985 #    Max liquids processed per step.
986 #    type: int
987 # liquid_loop_max = 100000
988
989 #    The time (in seconds) that the liquids queue may grow beyond processing
990 #    capacity until an attempt is made to decrease its size by dumping old queue
991 #    items.  A value of 0 disables the functionality.
992 #    type: int
993 # liquid_queue_purge_time = 0
994
995 #    Liquid update interval in seconds.
996 #    type: float
997 # liquid_update = 1.0
998
999 ## Mapgen
1000
1001 #    Name of map generator to be used when creating a new world.
1002 #    Creating a world in the main menu will override this.
1003 #    type: enum values: v5, v6, v7, flat, fractal, singlenode
1004 # mg_name = v6
1005
1006 #    Water surface level of the world.
1007 #    type: int
1008 # water_level = 1
1009
1010 #    From how far blocks are generated for clients, stated in mapblocks (16 nodes).
1011 #    type: int
1012 # max_block_generate_distance = 6
1013
1014 #    Where the map generator stops.
1015 #    Please note:
1016 #    -    Limited to 31000 (setting above has no effect)
1017 #    -    The map generator works in groups of 80x80x80 nodes (5x5x5 MapBlocks).
1018 #    -    Those groups have an offset of -32, -32 nodes from the origin.
1019 #    -    Only groups which are within the map_generation_limit are generated
1020 #    type: int min: 0 max: 31000
1021 # map_generation_limit = 31000
1022
1023 #    Global map generation attributes.
1024 #    Flags that are not specified in the flag string are not modified from the default.
1025 #    Flags starting with "no" are used to explicitly disable them.
1026 #    'trees' and 'flat' flags only have effect in mgv6.
1027 #    type: flags possible values: trees, caves, dungeons, light, flat, notrees, nocaves, nodungeons, nolight, noflat
1028 # mg_flags = trees,caves,dungeons,light
1029
1030 ### Advanced
1031
1032 #    Size of chunks to be generated at once by mapgen, stated in mapblocks (16 nodes).
1033 #    type: int
1034 # chunksize = 5
1035
1036 #    Dump the mapgen debug infos.
1037 #    type: bool
1038 # enable_mapgen_debug_info = false
1039
1040 #    Maximum number of blocks that can be queued for loading.
1041 #    type: int
1042 # emergequeue_limit_total = 256
1043
1044 #    Maximum number of blocks to be queued that are to be loaded from file.
1045 #    Set to blank for an appropriate amount to be chosen automatically.
1046 #    type: int
1047 # emergequeue_limit_diskonly = 32
1048
1049 #    Maximum number of blocks to be queued that are to be generated.
1050 #    Set to blank for an appropriate amount to be chosen automatically.
1051 #    type: int
1052 # emergequeue_limit_generate = 32
1053
1054 #    Number of emerge threads to use. Make this field blank, or increase this number
1055 #    to use multiple threads. On multiprocessor systems, this will improve mapgen speed greatly
1056 #    at the cost of slightly buggy caves.
1057 #    type: int
1058 # num_emerge_threads = 1
1059
1060 #    Noise parameters for biome API temperature, humidity and biome blend.
1061 #    type: noise_params
1062 # mg_biome_np_heat = 50, 50, (750, 750, 750), 5349, 3, 0.5, 2.0
1063
1064 #    type: noise_params
1065 # mg_biome_np_heat_blend = 0, 1.5, (8, 8, 8), 13, 2, 1.0, 2.0
1066
1067 #    type: noise_params
1068 # mg_biome_np_humidity = 50, 50, (750, 750, 750), 842, 3, 0.5, 2.0
1069
1070 #    type: noise_params
1071 # mg_biome_np_humidity_blend = 0, 1.5, (8, 8, 8), 90003, 2, 1.0, 2.0
1072
1073 #### Mapgen v5
1074
1075 #    type: noise_params
1076 # mgv5_np_filler_depth = 0, 1, (150, 150, 150), 261, 4, 0.7, 2.0
1077
1078 #    type: noise_params
1079 # mgv5_np_factor = 0, 1, (250, 250, 250), 920381, 3, 0.45, 2.0
1080
1081 #    type: noise_params
1082 # mgv5_np_height = 0, 10, (250, 250, 250), 84174, 4, 0.5, 2.0
1083
1084 #    type: noise_params
1085 # mgv5_np_cave1 = 0, 12, (50, 50, 50), 52534, 4, 0.5, 2.0
1086
1087 #    type: noise_params
1088 # mgv5_np_cave2 = 0, 12, (50, 50, 50), 10325, 4, 0.5, 2.0
1089
1090 #### Mapgen v6
1091
1092 #    Map generation attributes specific to Mapgen v6.
1093 #    When snowbiomes are enabled jungles are enabled and the jungles flag is ignored.
1094 #    Flags that are not specified in the flag string are not modified from the default.
1095 #    Flags starting with "no" are used to explicitly disable them.
1096 #    type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, nojungles, nobiomeblend, nomudflow, nosnowbiomes
1097 # mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes
1098
1099 #    Controls size of deserts and beaches in Mapgen v6.
1100 #    When snowbiomes are enabled 'mgv6_freq_desert' is ignored.
1101 #    type: float
1102 # mgv6_freq_desert = 0.45
1103
1104 #    type: float
1105 # mgv6_freq_beach = 0.15
1106
1107 #    type: noise_params
1108 # mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
1109
1110 #    type: noise_params
1111 # mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6, 2.0
1112
1113 #    type: noise_params
1114 # mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7, 2.0
1115
1116 #    type: noise_params
1117 # mgv6_np_height_select = 0.5, 1, (250, 250, 250), 4213, 5, 0.69, 2.0
1118
1119 #    type: noise_params
1120 # mgv6_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55, 2.0
1121
1122 #    type: noise_params
1123 # mgv6_np_beach = 0, 1, (250, 250, 250), 59420, 3, 0.50, 2.0
1124
1125 #    type: noise_params
1126 # mgv6_np_biome = 0, 1, (500, 500, 500), 9130, 3, 0.50, 2.0
1127
1128 #    type: noise_params
1129 # mgv6_np_cave = 6, 6, (250, 250, 250), 34329, 3, 0.50, 2.0
1130
1131 #    type: noise_params
1132 # mgv6_np_humidity = 0.5, 0.5, (500, 500, 500), 72384, 3, 0.50, 2.0
1133
1134 #    type: noise_params
1135 # mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66, 2.0
1136
1137 #    type: noise_params
1138 # mgv6_np_apple_trees = 0, 1, (100, 100, 100), 342902, 3, 0.45, 2.0
1139
1140 #### Mapgen v7
1141
1142 #    Map generation attributes specific to Mapgen v7.
1143 #    'ridges' are the rivers.
1144 #    Flags that are not specified in the flag string are not modified from the default.
1145 #    Flags starting with "no" are used to explicitly disable them.
1146 #    type: flags possible values: mountains, ridges, nomountains, noridges
1147 # mgv7_spflags = mountains,ridges
1148
1149 #    type: noise_params
1150 # mgv7_np_terrain_base = 4, 70, (600, 600, 600), 82341, 5, 0.6, 2.0
1151
1152 #    type: noise_params
1153 # mgv7_np_terrain_alt = 4, 25, (600, 600, 600), 5934, 5, 0.6, 2.0
1154
1155 #    type: noise_params
1156 # mgv7_np_terrain_persist = 0.6, 0.1, (2000, 2000, 2000), 539, 3, 0.6, 2.0
1157
1158 #    type: noise_params
1159 # mgv7_np_height_select = -12, 24, (500, 500, 500), 4213, 6, 0.7, 2.0
1160
1161 #    type: noise_params
1162 # mgv7_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
1163
1164 #    type: noise_params
1165 # mgv7_np_mount_height = 256, 112, (1000, 1000, 1000), 72449, 3, 0.6, 2.0
1166
1167 #    type: noise_params
1168 # mgv7_np_ridge_uwater = 0, 1, (1000, 1000, 1000), 85039, 5, 0.6, 2.0
1169
1170 #    type: noise_params
1171 # mgv7_np_mountain = -0.6, 1, (250, 350, 250), 5333, 5, 0.63, 2.0
1172
1173 #    type: noise_params
1174 # mgv7_np_ridge = 0, 1, (100, 100, 100), 6467, 4, 0.75, 2.0
1175
1176 #    type: noise_params
1177 # mgv7_np_cave1 = 0, 12, (100, 100, 100), 52534, 4, 0.5, 2.0
1178
1179 #    type: noise_params
1180 # mgv7_np_cave2 = 0, 12, (100, 100, 100), 10325, 4, 0.5, 2.0
1181
1182 #### Mapgen flat
1183
1184 #    Map generation attributes specific to Mapgen flat.
1185 #    Occasional lakes and hills added to the flat world.
1186 #    Flags that are not specified in the flag string are not modified from the default.
1187 #    Flags starting with "no" are used to explicitly disable them.
1188 #    type: flags possible values: lakes, hills, nolakes, nohills
1189 # mgflat_spflags = nolakes,nohills
1190
1191 #    Y of flat ground.
1192 #    type: int
1193 # mgflat_ground_level = 8
1194
1195 #    Y of upper limit of large pseudorandom caves.
1196 #    type: int
1197 # mgflat_large_cave_depth = -33
1198
1199 #    Terrain noise threshold for lakes.
1200 #    Controls proportion of world area covered by lakes.
1201 #    Adjust towards 0.0 for a larger proportion.
1202 #    type: float
1203 # mgflat_lake_threshold = -0.45
1204
1205 #    Controls steepness/depth of lake depressions.
1206 #    type: float
1207 # mgflat_lake_steepness = 48.0
1208
1209 #    Terrain noise threshold for hills.
1210 #    Controls proportion of world area covered by hills.
1211 #    Adjust towards 0.0 for a larger proportion.
1212 #    type: float
1213 # mgflat_hill_threshold = 0.45
1214
1215 #    Controls steepness/height of hills.
1216 #    type: float
1217 # mgflat_hill_steepness = 64.0
1218
1219 #    Determines terrain shape.
1220 #    The 3 numbers in brackets control the scale of the
1221 #    terrain, the 3 numbers should be identical.
1222 #    type: noise_params
1223 # mgflat_np_terrain = 0, 1, (600, 600, 600), 7244, 5, 0.6, 2.0
1224
1225 #    type: noise_params
1226 # mgflat_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
1227
1228 #    type: noise_params
1229 # mgflat_np_cave1 = 0, 12, (128, 128, 128), 52534, 4, 0.5, 2.0
1230
1231 #    type: noise_params
1232 # mgflat_np_cave2 = 0, 12, (128, 128, 128), 10325, 4, 0.5, 2.0
1233
1234 #### Mapgen fractal
1235
1236 #    Map generation attributes specific to Mapgen fractal.
1237 #    'julia' selects a julia set to be generated instead of a mandelbrot set.
1238 #    Flags that are not specified in the flag string are not modified from the default.
1239 #    Flags starting with "no" are used to explicitly disable them.
1240 #    type: flags possible values: julia, nojulia
1241 # mgfractal_spflags = nojulia
1242
1243 #    Mandelbrot set: Iterations of the recursive function.
1244 #    Controls scale of finest detail.
1245 #    type: int
1246 # mgfractal_m_iterations = 9
1247
1248 #    Mandelbrot set: Approximate (X,Y,Z) scales in nodes.
1249 #    type: v3f
1250 # mgfractal_m_scale = (1024.0, 256.0, 1024.0)
1251
1252 #    Mandelbrot set: (X,Y,Z) offsets from world centre.
1253 #    Range roughly -2 to 2, multiply by m_scale for offsets in nodes.
1254 #    type: v3f
1255 # mgfractal_m_offset = (1.75, 0.0, 0.0)
1256
1257 #    Mandelbrot set: W co-ordinate of the generated 3D slice of the 4D shape.
1258 #    Range roughly -2 to 2.
1259 #    type: float
1260 # mgfractal_m_slice_w = 0.0
1261
1262 #    Julia set: Iterations of the recursive function.
1263 #    Controls scale of finest detail.
1264 #    type: int
1265 # mgfractal_j_iterations = 9
1266
1267 #    Julia set: Approximate (X,Y,Z) scales in nodes.
1268 #    type: v3f
1269 # mgfractal_j_scale = (2048.0, 512.0, 2048.0)
1270
1271 #    Julia set: (X,Y,Z) offsets from world centre.
1272 #    Range roughly -2 to 2, multiply by j_scale for offsets in nodes.
1273 #    type: v3f
1274 # mgfractal_j_offset = (0.0, 1.0, 0.0)
1275
1276 #    Julia set: W co-ordinate of the generated 3D slice of the 4D shape.
1277 #    Range roughly -2 to 2.
1278 #    type: float
1279 # mgfractal_j_slice_w = 0.0
1280
1281 #    Julia set: X value determining the 4D shape.
1282 #    Range roughly -2 to 2.
1283 #    type: float
1284 # mgfractal_julia_x = 0.33
1285
1286 #    Julia set: Y value determining the 4D shape.
1287 #    Range roughly -2 to 2.
1288 #    type: float
1289 # mgfractal_julia_y = 0.33
1290
1291 #    Julia set: Z value determining the 4D shape.
1292 #    Range roughly -2 to 2.
1293 #    type: float
1294 # mgfractal_julia_z = 0.33
1295
1296 #    Julia set: W value determining the 4D shape.
1297 #    Range roughly -2 to 2.
1298 #    type: float
1299 # mgfractal_julia_w = 0.33
1300
1301 #    type: noise_params
1302 # mgfractal_np_seabed = -14, 9, (600, 600, 600), 41900, 5, 0.6, 2.0
1303
1304 #    type: noise_params
1305 # mgfractal_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
1306
1307 #    type: noise_params
1308 # mgfractal_np_cave1 = 0, 12, (128, 128, 128), 52534, 4, 0.5, 2.0
1309
1310 #    type: noise_params
1311 # mgfractal_np_cave2 = 0, 12, (128, 128, 128), 10325, 4, 0.5, 2.0
1312
1313 ## Security
1314
1315 #    Prevent mods from doing insecure things like running shell commands.
1316 #    type: bool
1317 # secure.enable_security = false
1318
1319 #    Comma-separated list of trusted mods that are allowed to access insecure
1320 #    functions even when mod security is on (via request_insecure_environment()).
1321 #    type: string
1322 # secure.trusted_mods = 
1323
1324 #
1325 # Client and Server
1326 #
1327
1328 #    Name of the player.
1329 #    When running a server, clients connecting with this name are admins.
1330 #    When starting from the main menu, this is overridden.
1331 #    type: string
1332 # name = 
1333
1334 #    Set the language. Leave empty to use the system language.
1335 #    A restart is required after changing this.
1336 #    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
1337 # language =  
1338
1339 #    Level of logging to be written to debug.txt:
1340 #    -    <nothing> (no logging)
1341 #    -    none (messages with no level)
1342 #    -    error
1343 #    -    warning
1344 #    -    action
1345 #    -    info
1346 #    -    verbose
1347 #    type: enum values: , warning, action, info, verbose
1348 # debug_log_level = action
1349
1350 #    IPv6 support.
1351 #    type: bool
1352 # enable_ipv6 = true
1353
1354 ## Advanced
1355
1356 #    Default timeout for cURL, stated in milliseconds.
1357 #    Only has an effect if compiled with cURL.
1358 #    type: int
1359 # curl_timeout = 5000
1360
1361 #    Limits number of parallel HTTP requests. Affects:
1362 #    -    Media fetch if server uses remote_media setting.
1363 #    -    Serverlist download and server announcement.
1364 #    -    Downloads performed by main menu (e.g. mod manager).
1365 #    Only has an effect if compiled with cURL.
1366 #    type: int
1367 # curl_parallel_limit = 8
1368
1369 #    Maximum time in ms a file download (e.g. a mod download) may take.
1370 #    type: int
1371 # curl_file_download_timeout = 300000
1372
1373 #    Makes DirectX work with LuaJIT. Disable if it causes troubles.
1374 #    type: bool
1375 # high_precision_fpu = true
1376
1377 #    Replaces the default main menu with a custom one.
1378 #    type: string
1379 # main_menu_script = 
1380
1381 #    type: int
1382 # main_menu_game_mgr = 0
1383
1384 #    type: int
1385 # main_menu_mod_mgr = 1
1386
1387 #    type: string
1388 # modstore_download_url = https://forum.minetest.net/media/
1389
1390 #    type: string
1391 # modstore_listmods_url = https://forum.minetest.net/mmdb/mods/
1392
1393 #    type: string
1394 # modstore_details_url = https://forum.minetest.net/mmdb/mod/*/
1395