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