]> git.lizzy.rs Git - dragonfireclient.git/blob - minetest.conf.example
Extend pitch fly mode to swimming (#7943)
[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 # Controls
17 #
18
19 #    If enabled, you can place blocks at the position (feet + eye level) where you stand.
20 #    This is helpful when working with nodeboxes in small areas.
21 #    type: bool
22 # enable_build_where_you_stand = false
23
24 #    Player is able to fly without being affected by gravity.
25 #    This requires the "fly" privilege on the server.
26 #    type: bool
27 # free_move = false
28
29 #    If enabled, makes move directions relative to the player's pitch when flying or swimming.
30 #    type: bool
31 # pitch_move = false
32
33 #    Fast movement (via the "special" key).
34 #    This requires the "fast" privilege on the server.
35 #    type: bool
36 # fast_move = false
37
38 #    If enabled together with fly mode, player is able to fly through solid nodes.
39 #    This requires the "noclip" privilege on the server.
40 #    type: bool
41 # noclip = false
42
43 #    Smooths camera when looking around. Also called look or mouse smoothing.
44 #    Useful for recording videos.
45 #    type: bool
46 # cinematic = false
47
48 #    Smooths rotation of camera. 0 to disable.
49 #    type: float min: 0 max: 0.99
50 # camera_smoothing = 0.0
51
52 #    Smooths rotation of camera in cinematic mode. 0 to disable.
53 #    type: float min: 0 max: 0.99
54 # cinematic_camera_smoothing = 0.7
55
56 #    Invert vertical mouse movement.
57 #    type: bool
58 # invert_mouse = false
59
60 #    Mouse sensitivity multiplier.
61 #    type: float
62 # mouse_sensitivity = 0.2
63
64 #    If enabled, "special" key instead of "sneak" key is used for climbing down and
65 #    descending.
66 #    type: bool
67 # aux1_descends = false
68
69 #    Double-tapping the jump key toggles fly mode.
70 #    type: bool
71 # doubletap_jump = false
72
73 #    If disabled, "special" key is used to fly fast if both fly and fast mode are
74 #    enabled.
75 #    type: bool
76 # always_fly_fast = true
77
78 #    The time in seconds it takes between repeated right clicks when holding the right
79 #    mouse button.
80 #    type: float
81 # repeat_rightclick_time = 0.25
82
83 #    Automatically jump up single-node obstacles.
84 #    type: bool
85 #    type: bool
86 # autojump = false
87
88 #    Prevent digging and placing from repeating when holding the mouse buttons.
89 #    Enable this when you dig or place too often by accident.
90 #    type: bool
91 # safe_dig_and_place = false
92
93 #    Enable random user input (only used for testing).
94 #    type: bool
95 # random_input = false
96
97 #    Continuous forward movement, toggled by autoforward key.
98 #    Press the autoforward key again or the backwards movement to disable.
99 #    type: bool
100 # continuous_forward = false
101
102 #    The length in pixels it takes for touch screen interaction to start.
103 #    type: int min: 0 max: 100
104 # touchscreen_threshold = 20
105
106 #    (Android) Fixes the position of virtual joystick.
107 #    If disabled, virtual joystick will center to first-touch's position.
108 #    type: bool
109 # fixed_virtual_joystick = false
110
111 #    (Android) Use virtual joystick to trigger "aux" button.
112 #    If enabled, virtual joystick will also tap "aux" button when out of main circle.
113 #    type: bool
114 # virtual_joystick_triggers_aux = false
115
116 #    Enable joysticks
117 #    type: bool
118 # enable_joysticks = false
119
120 #    The identifier of the joystick to use
121 #    type: int
122 # joystick_id = 0
123
124 #    The type of joystick
125 #    type: enum values: auto, generic, xbox
126 # joystick_type = auto
127
128 #    The time in seconds it takes between repeated events
129 #    when holding down a joystick button combination.
130 #    type: float
131 # repeat_joystick_button_time = 0.17
132
133 #    The sensitivity of the joystick axes for moving the
134 #    ingame view frustum around.
135 #    type: float
136 # joystick_frustum_sensitivity = 170
137
138 #    Key for moving the player forward.
139 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
140 #    type: key
141 # keymap_forward = KEY_KEY_W
142
143 #    Key for moving the player backward.
144 #    Will also disable autoforward, when active.
145 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
146 #    type: key
147 # keymap_backward = KEY_KEY_S
148
149 #    Key for moving the player left.
150 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
151 #    type: key
152 # keymap_left = KEY_KEY_A
153
154 #    Key for moving the player right.
155 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
156 #    type: key
157 # keymap_right = KEY_KEY_D
158
159 #    Key for jumping.
160 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
161 #    type: key
162 # keymap_jump = KEY_SPACE
163
164 #    Key for sneaking.
165 #    Also used for climbing down and descending in water if aux1_descends is disabled.
166 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
167 #    type: key
168 # keymap_sneak = KEY_LSHIFT
169
170 #    Key for opening the inventory.
171 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
172 #    type: key
173 # keymap_inventory = KEY_KEY_I
174
175 #    Key for moving fast in fast mode.
176 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
177 #    type: key
178 # keymap_special1 = KEY_KEY_E
179
180 #    Key for opening the chat window.
181 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
182 #    type: key
183 # keymap_chat = KEY_KEY_T
184
185 #    Key for opening the chat window to type commands.
186 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
187 #    type: key
188 # keymap_cmd = /
189
190 #    Key for opening the chat window to type local commands.
191 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
192 #    type: key
193 # keymap_cmd_local = .
194
195 #    Key for toggling unlimited view range.
196 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
197 #    type: key
198 # keymap_rangeselect = KEY_KEY_R
199
200 #    Key for toggling flying.
201 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
202 #    type: key
203 # keymap_freemove = KEY_KEY_K
204
205 #    Key for toggling pitch move mode.
206 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
207 #    type: key
208 # keymap_pitchmove = KEY_KEY_L
209
210 #    Key for toggling fast mode.
211 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
212 #    type: key
213 # keymap_fastmove = KEY_KEY_J
214
215 #    Key for toggling noclip mode.
216 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
217 #    type: key
218 # keymap_noclip = KEY_KEY_H
219
220 #    Key for selecting the next item in the hotbar.
221 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
222 #    type: key
223 # keymap_hotbar_next = KEY_KEY_N
224
225 #    Key for selecting the previous item in the hotbar.
226 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
227 #    type: key
228 # keymap_hotbar_previous = KEY_KEY_B
229
230 #    Key for muting the game.
231 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
232 #    type: key
233 # keymap_mute = KEY_KEY_M
234
235 #    Key for increasing the volume.
236 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
237 #    type: key
238 # keymap_increase_volume =
239
240 #    Key for decreasing the volume.
241 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
242 #    type: key
243 # keymap_decrease_volume =
244
245 #    Key for toggling autoforward.
246 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
247 #    type: key
248 # keymap_autoforward =
249
250 #    Key for toggling cinematic mode.
251 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
252 #    type: key
253 # keymap_cinematic =
254
255 #    Key for toggling display of minimap.
256 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
257 #    type: key
258 # keymap_minimap = KEY_F9
259
260 #    Key for taking screenshots.
261 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
262 #    type: key
263 # keymap_screenshot = KEY_F12
264
265 #    Key for dropping the currently selected item.
266 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
267 #    type: key
268 # keymap_drop = KEY_KEY_Q
269
270 #    Key to use view zoom when possible.
271 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
272 #    type: key
273 # keymap_zoom = KEY_KEY_Z
274
275 #    Key for selecting the first hotbar slot.
276 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
277 #    type: key
278 # keymap_slot1 = KEY_KEY_1
279
280 #    Key for selecting the second hotbar slot.
281 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
282 #    type: key
283 # keymap_slot2 = KEY_KEY_2
284
285 #    Key for selecting the third hotbar slot.
286 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
287 #    type: key
288 # keymap_slot3 = KEY_KEY_3
289
290 #    Key for selecting the fourth hotbar slot.
291 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
292 #    type: key
293 # keymap_slot4 = KEY_KEY_4
294
295 #    Key for selecting the fifth hotbar slot.
296 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
297 #    type: key
298 # keymap_slot5 = KEY_KEY_5
299
300 #    Key for selecting the sixth hotbar slot.
301 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
302 #    type: key
303 # keymap_slot6 = KEY_KEY_6
304
305 #    Key for selecting the seventh hotbar slot.
306 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
307 #    type: key
308 # keymap_slot7 = KEY_KEY_7
309
310 #    Key for selecting the eighth hotbar slot.
311 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
312 #    type: key
313 # keymap_slot8 = KEY_KEY_8
314
315 #    Key for selecting the ninth hotbar slot.
316 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
317 #    type: key
318 # keymap_slot9 = KEY_KEY_9
319
320 #    Key for selecting the tenth hotbar slot.
321 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
322 #    type: key
323 # keymap_slot10 = KEY_KEY_0
324
325 #    Key for selecting the 11th hotbar slot.
326 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
327 #    type: key
328 # keymap_slot11 =
329
330 #    Key for selecting the 12th hotbar slot.
331 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
332 #    type: key
333 # keymap_slot12 =
334
335 #    Key for selecting the 13th hotbar slot.
336 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
337 #    type: key
338 # keymap_slot13 =
339
340 #    Key for selecting the 14th hotbar slot.
341 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
342 #    type: key
343 # keymap_slot14 =
344
345 #    Key for selecting the 15th hotbar slot.
346 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
347 #    type: key
348 # keymap_slot15 =
349
350 #    Key for selecting the 16th hotbar slot.
351 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
352 #    type: key
353 # keymap_slot16 =
354
355 #    Key for selecting the 17th hotbar slot.
356 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
357 #    type: key
358 # keymap_slot17 =
359
360 #    Key for selecting the 18th hotbar slot.
361 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
362 #    type: key
363 # keymap_slot18 =
364
365 #    Key for selecting the 19th hotbar slot.
366 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
367 #    type: key
368 # keymap_slot19 =
369
370 #    Key for selecting the 20th hotbar slot.
371 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
372 #    type: key
373 # keymap_slot20 =
374
375 #    Key for selecting the 21st hotbar slot.
376 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
377 #    type: key
378 # keymap_slot21 =
379
380 #    Key for selecting the 22nd hotbar slot.
381 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
382 #    type: key
383 # keymap_slot22 =
384
385 #    Key for selecting the 23rd hotbar slot.
386 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
387 #    type: key
388 # keymap_slot23 =
389
390 #    Key for selecting the 24th hotbar slot.
391 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
392 #    type: key
393 # keymap_slot24 =
394
395 #    Key for selecting the 25th hotbar slot.
396 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
397 #    type: key
398 # keymap_slot25 =
399
400 #    Key for selecting the 26th hotbar slot.
401 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
402 #    type: key
403 # keymap_slot26 =
404
405 #    Key for selecting the 27th hotbar slot.
406 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
407 #    type: key
408 # keymap_slot27 =
409
410 #    Key for selecting the 28th hotbar slot.
411 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
412 #    type: key
413 # keymap_slot28 =
414
415 #    Key for selecting the 29th hotbar slot.
416 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
417 #    type: key
418 # keymap_slot29 =
419
420 #    Key for selecting the 30th hotbar slot.
421 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
422 #    type: key
423 # keymap_slot30 =
424
425 #    Key for selecting the 31st hotbar slot.
426 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
427 #    type: key
428 # keymap_slot31 =
429
430 #    Key for selecting the 32nd hotbar slot.
431 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
432 #    type: key
433 # keymap_slot32 =
434
435 #    Key for toggling the display of the HUD.
436 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
437 #    type: key
438 # keymap_toggle_hud = KEY_F1
439
440 #    Key for toggling the display of chat.
441 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
442 #    type: key
443 # keymap_toggle_chat = KEY_F2
444
445 #    Key for toggling the display of the large chat console.
446 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
447 #    type: key
448 # keymap_console = KEY_F10
449
450 #    Key for toggling the display of fog.
451 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
452 #    type: key
453 # keymap_toggle_force_fog_off = KEY_F3
454
455 #    Key for toggling the camera update. Only used for development
456 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
457 #    type: key
458 # keymap_toggle_update_camera =
459
460 #    Key for toggling the display of debug info.
461 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
462 #    type: key
463 # keymap_toggle_debug = KEY_F5
464
465 #    Key for toggling the display of the profiler. Used for development.
466 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
467 #    type: key
468 # keymap_toggle_profiler = KEY_F6
469
470 #    Key for switching between first- and third-person camera.
471 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
472 #    type: key
473 # keymap_camera_mode = KEY_F7
474
475 #    Key for increasing the viewing range.
476 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
477 #    type: key
478 # keymap_increase_viewing_range_min = +
479
480 #    Key for decreasing the viewing range.
481 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
482 #    type: key
483 # keymap_decrease_viewing_range_min = -
484
485 #
486 # Graphics
487 #
488
489 ## In-Game
490
491 ### Basic
492
493 #    Enable VBO
494 #    type: bool
495 # enable_vbo = true
496
497 #    Whether to fog out the end of the visible area.
498 #    type: bool
499 # enable_fog = true
500
501 #    Leaves style:
502 #    -   Fancy:  all faces visible
503 #    -   Simple: only outer faces, if defined special_tiles are used
504 #    -   Opaque: disable transparency
505 #    type: enum values: fancy, simple, opaque
506 # leaves_style = fancy
507
508 #    Connects glass if supported by node.
509 #    type: bool
510 # connected_glass = false
511
512 #    Enable smooth lighting with simple ambient occlusion.
513 #    Disable for speed or for different looks.
514 #    type: bool
515 # smooth_lighting = true
516
517 #    Clouds are a client side effect.
518 #    type: bool
519 # enable_clouds = true
520
521 #    Use 3D cloud look instead of flat.
522 #    type: bool
523 # enable_3d_clouds = true
524
525 #    Method used to highlight selected object.
526 #    type: enum values: box, halo, none
527 # node_highlighting = box
528
529 #    Adds particles when digging a node.
530 #    type: bool
531 # enable_particles = true
532
533 ### Filtering
534
535 #    Use mip mapping to scale textures. May slightly increase performance,
536 #    especially when using a high resolution texture pack.
537 #    Gamma correct downscaling is not supported.
538 #    type: bool
539 # mip_map = false
540
541 #    Use anisotropic filtering when viewing at textures from an angle.
542 #    type: bool
543 # anisotropic_filter = false
544
545 #    Use bilinear filtering when scaling textures.
546 #    type: bool
547 # bilinear_filter = false
548
549 #    Use trilinear filtering when scaling textures.
550 #    type: bool
551 # trilinear_filter = false
552
553 #    Filtered textures can blend RGB values with fully-transparent neighbors,
554 #    which PNG optimizers usually discard, sometimes resulting in a dark or
555 #    light edge to transparent textures. Apply this filter to clean that up
556 #    at texture load time.
557 #    type: bool
558 # texture_clean_transparent = false
559
560 #    When using bilinear/trilinear/anisotropic filters, low-resolution textures
561 #    can be blurred, so automatically upscale them with nearest-neighbor
562 #    interpolation to preserve crisp pixels. This sets the minimum texture size
563 #    for the upscaled textures; higher values look sharper, but require more
564 #    memory.  Powers of 2 are recommended. Setting this higher than 1 may not
565 #    have a visible effect unless bilinear/trilinear/anisotropic filtering is
566 #    enabled.
567 #    This is also used as the base node texture size for world-aligned
568 #    texture autoscaling.
569 #    type: int
570 # texture_min_size = 64
571
572 #    Experimental option, might cause visible spaces between blocks
573 #    when set to higher number than 0.
574 #    type: enum values: 0, 1, 2, 4, 8, 16
575 # fsaa = 0
576
577 #    Undersampling is similar to using lower screen resolution, but it applies
578 #    to the game world only, keeping the GUI intact.
579 #    It should give significant performance boost at the cost of less detailed image.
580 #    type: enum values: 0, 2, 3, 4
581 # undersampling = 0
582
583 ### Shaders
584
585 #    Shaders allow advanced visual effects and may increase performance on some video
586 #    cards.
587 #    This only works with the OpenGL video backend.
588 #    type: bool
589 # enable_shaders = true
590
591 #    Path to shader directory. If no path is defined, default location will be used.
592 #    type: path
593 # shader_path =
594
595 #### Tone Mapping
596
597 #    Enables filmic tone mapping
598 #    type: bool
599 # tone_mapping = false
600
601 #### Bumpmapping
602
603 #    Enables bumpmapping for textures. Normalmaps need to be supplied by the texture pack
604 #    or need to be auto-generated.
605 #    Requires shaders to be enabled.
606 #    type: bool
607 # enable_bumpmapping = false
608
609 #    Enables on the fly normalmap generation (Emboss effect).
610 #    Requires bumpmapping to be enabled.
611 #    type: bool
612 # generate_normalmaps = false
613
614 #    Strength of generated normalmaps.
615 #    type: float
616 # normalmaps_strength = 0.6
617
618 #    Defines sampling step of texture.
619 #    A higher value results in smoother normal maps.
620 #    type: int min: 0 max: 2
621 # normalmaps_smooth = 0
622
623 #### Parallax Occlusion
624
625 #    Enables parallax occlusion mapping.
626 #    Requires shaders to be enabled.
627 #    type: bool
628 # enable_parallax_occlusion = false
629
630 #    0 = parallax occlusion with slope information (faster).
631 #    1 = relief mapping (slower, more accurate).
632 #    type: int min: 0 max: 1
633 # parallax_occlusion_mode = 1
634
635 #    Strength of parallax.
636 #    type: float
637 # 3d_paralax_strength = 0.025
638
639 #    Number of parallax occlusion iterations.
640 #    type: int
641 # parallax_occlusion_iterations = 4
642
643 #    Overall scale of parallax occlusion effect.
644 #    type: float
645 # parallax_occlusion_scale = 0.08
646
647 #    Overall bias of parallax occlusion effect, usually scale/2.
648 #    type: float
649 # parallax_occlusion_bias = 0.04
650
651 #### Waving Nodes
652
653 #    Set to true enables waving water.
654 #    Requires shaders to be enabled.
655 #    type: bool
656 # enable_waving_water = false
657
658 #    type: float
659 # water_wave_height = 1.0
660
661 #    type: float
662 # water_wave_length = 20.0
663
664 #    type: float
665 # water_wave_speed = 5.0
666
667 #    Set to true enables waving leaves.
668 #    Requires shaders to be enabled.
669 #    type: bool
670 # enable_waving_leaves = false
671
672 #    Set to true enables waving plants.
673 #    Requires shaders to be enabled.
674 #    type: bool
675 # enable_waving_plants = false
676
677 ### Advanced
678
679 #    Arm inertia, gives a more realistic movement of
680 #    the arm when the camera moves.
681 #    type: bool
682 # arm_inertia = true
683
684 #    If FPS would go higher than this, limit it by sleeping
685 #    to not waste CPU power for no benefit.
686 #    type: int
687 # fps_max = 60
688
689 #    Maximum FPS when game is paused.
690 #    type: int
691 # pause_fps_max = 20
692
693 #    Open the pause menu when the window's focus is lost. Does not pause if a formspec is
694 #    open.
695 #    type: bool
696 # pause_on_lost_focus = false
697
698 #    View distance in nodes.
699 #    type: int min: 20 max: 4000
700 # viewing_range = 100
701
702 #    Camera near plane distance in nodes, between 0 and 0.5
703 #    Most users will not need to change this.
704 #    Increasing can reduce artifacting on weaker GPUs.
705 #    0.1 = Default, 0.25 = Good value for weaker tablets.
706 #    type: float min: 0 max: 0.5
707 # near_plane = 0.1
708
709 #    Width component of the initial window size.
710 #    type: int
711 # screen_w = 1024
712
713 #    Height component of the initial window size.
714 #    type: int
715 # screen_h = 600
716
717 #    Save window size automatically when modified.
718 #    type: bool
719 # autosave_screensize = true
720
721 #    Fullscreen mode.
722 #    type: bool
723 # fullscreen = false
724
725 #    Bits per pixel (aka color depth) in fullscreen mode.
726 #    type: int
727 # fullscreen_bpp = 24
728
729 #    Vertical screen synchronization.
730 #    type: bool
731 # vsync = false
732
733 #    Field of view in degrees.
734 #    type: int min: 45 max: 160
735 # fov = 72
736
737 #    Adjust the gamma encoding for the light tables. Higher numbers are brighter.
738 #    This setting is for the client only and is ignored by the server.
739 #    type: float min: 0.5 max: 3
740 # display_gamma = 1.0
741
742 #    Gradient of light curve at minimum light level.
743 #    type: float min: 0 max: 4
744 # lighting_alpha = 0.0
745
746 #    Gradient of light curve at maximum light level.
747 #    type: float min: 0 max: 4
748 # lighting_beta = 1.5
749
750 #    Strength of light curve mid-boost.
751 #    type: float min: 0 max: 1
752 # lighting_boost = 0.2
753
754 #    Center of light curve mid-boost.
755 #    type: float min: 0 max: 1
756 # lighting_boost_center = 0.5
757
758 #    Spread of light curve mid-boost.
759 #    Standard deviation of the mid-boost gaussian.
760 #    type: float min: 0 max: 1
761 # lighting_boost_spread = 0.2
762
763 #    Path to texture directory. All textures are first searched from here.
764 #    type: path
765 # texture_path =
766
767 #    The rendering back-end for Irrlicht.
768 #    A restart is required after changing this.
769 #    Note: On Android, stick with OGLES1 if unsure! App may fail to start otherwise.
770 #    On other platforms, OpenGL is recommended, and it’s the only driver with
771 #    shader support currently.
772 #    type: enum values: null, software, burningsvideo, direct3d8, direct3d9, opengl, ogles1, ogles2
773 # video_driver = opengl
774
775 #    Radius of cloud area stated in number of 64 node cloud squares.
776 #    Values larger than 26 will start to produce sharp cutoffs at cloud area corners.
777 #    type: int
778 # cloud_radius = 12
779
780 #    Enable view bobbing and amount of view bobbing.
781 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
782 #    type: float
783 # view_bobbing_amount = 1.0
784
785 #    Multiplier for fall bobbing.
786 #    For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
787 #    type: float
788 # fall_bobbing_amount = 0.03
789
790 #    3D support.
791 #    Currently supported:
792 #    -    none: no 3d output.
793 #    -    anaglyph: cyan/magenta color 3d.
794 #    -    interlaced: odd/even line based polarisation screen support.
795 #    -    topbottom: split screen top/bottom.
796 #    -    sidebyside: split screen side by side.
797 #    -    crossview: Cross-eyed 3d
798 #    -    pageflip: quadbuffer based 3d.
799 #    Note that the interlaced mode requires shaders to be enabled.
800 #    type: enum values: none, anaglyph, interlaced, topbottom, sidebyside, crossview, pageflip
801 # 3d_mode = none
802
803 #    In-game chat console height, between 0.1 (10%) and 1.0 (100%).
804 #    type: float min: 0.1 max: 1
805 # console_height = 0.6
806
807 #    In-game chat console background color (R,G,B).
808 #    type: string
809 # console_color = (0,0,0)
810
811 #    In-game chat console background alpha (opaqueness, between 0 and 255).
812 #    type: int min: 0 max: 255
813 # console_alpha = 200
814
815 #    Formspec full-screen background opacity (between 0 and 255).
816 #    type: int min: 0 max: 255
817 # formspec_fullscreen_bg_opacity = 140
818
819 #    Formspec full-screen background color (R,G,B).
820 #    type: string
821 # formspec_fullscreen_bg_color = (0,0,0)
822
823 #    Formspec default background opacity (between 0 and 255).
824 #    type: int min: 0 max: 255
825 # formspec_default_bg_opacity = 140
826
827 #    Formspec default background color (R,G,B).
828 #    type: string
829 # formspec_default_bg_color = (0,0,0)
830
831 #    Selection box border color (R,G,B).
832 #    type: string
833 # selectionbox_color = (0,0,0)
834
835 #    Width of the selection box lines around nodes.
836 #    type: int min: 1 max: 5
837 # selectionbox_width = 2
838
839 #    Crosshair color (R,G,B).
840 #    type: string
841 # crosshair_color = (255,255,255)
842
843 #    Crosshair alpha (opaqueness, between 0 and 255).
844 #    type: int min: 0 max: 255
845 # crosshair_alpha = 255
846
847 #    Maximum number of recent chat messages to show
848 #    type: int min: 2 max: 20
849 # recent_chat_messages = 6
850
851 #    Whether node texture animations should be desynchronized per mapblock.
852 #    type: bool
853 # desynchronize_mapblock_texture_animation = true
854
855 #    Maximum proportion of current window to be used for hotbar.
856 #    Useful if there's something to be displayed right or left of hotbar.
857 #    type: float
858 # hud_hotbar_max_width = 1.0
859
860 #    Modifies the size of the hudbar elements.
861 #    type: float
862 # hud_scaling = 1.0
863
864 #    Enables caching of facedir rotated meshes.
865 #    type: bool
866 # enable_mesh_cache = false
867
868 #    Delay between mesh updates on the client in ms. Increasing this will slow
869 #    down the rate of mesh updates, thus reducing jitter on slower clients.
870 #    type: int min: 0 max: 50
871 # mesh_generation_interval = 0
872
873 #    Size of the MapBlock cache of the mesh generator. Increasing this will
874 #    increase the cache hit %, reducing the data being copied from the main
875 #    thread, thus reducing jitter.
876 #    type: int min: 0 max: 1000
877 # meshgen_block_cache_size = 20
878
879 #    Enables minimap.
880 #    type: bool
881 # enable_minimap = true
882
883 #    Shape of the minimap. Enabled = round, disabled = square.
884 #    type: bool
885 # minimap_shape_round = true
886
887 #    True = 256
888 #    False = 128
889 #    Useable to make minimap smoother on slower machines.
890 #    type: bool
891 # minimap_double_scan_height = true
892
893 #    Make fog and sky colors depend on daytime (dawn/sunset) and view direction.
894 #    type: bool
895 # directional_colored_fog = true
896
897 #    The strength (darkness) of node ambient-occlusion shading.
898 #    Lower is darker, Higher is lighter. The valid range of values for this
899 #    setting is 0.25 to 4.0 inclusive. If the value is out of range it will be
900 #    set to the nearest valid value.
901 #    type: float min: 0.25 max: 4
902 # ambient_occlusion_gamma = 2.2
903
904 #    Enables animation of inventory items.
905 #    type: bool
906 # inventory_items_animations = false
907
908 #    Fraction of the visible distance at which fog starts to be rendered
909 #    type: float min: 0 max: 0.99
910 # fog_start = 0.4
911
912 #    Makes all liquids opaque
913 #    type: bool
914 # opaque_water = false
915
916 #    Textures on a node may be aligned either to the node or to the world.
917 #    The former mode suits better things like machines, furniture, etc., while
918 #    the latter makes stairs and microblocks fit surroundings better.
919 #    However, as this possibility is new, thus may not be used by older servers,
920 #    this option allows enforcing it for certain node types. Note though that
921 #    that is considered EXPERIMENTAL and may not work properly.
922 #    type: enum values: disable, enable, force_solid, force_nodebox
923 # world_aligned_mode = enable
924
925 #    World-aligned textures may be scaled to span several nodes. However,
926 #    the server may not send the scale you want, especially if you use
927 #    a specially-designed texture pack; with this option, the client tries
928 #    to determine the scale automatically basing on the texture size.
929 #    See also texture_min_size.
930 #    Warning: This option is EXPERIMENTAL!
931 #    type: enum values: disable, enable, force
932 # autoscale_mode = disable
933
934 #    Show entity selection boxes
935 #    type: bool
936 # show_entity_selectionbox = true
937
938 ## Menus
939
940 #    Use a cloud animation for the main menu background.
941 #    type: bool
942 # menu_clouds = true
943
944 #    Scale GUI by a user specified value.
945 #    Use a nearest-neighbor-anti-alias filter to scale the GUI.
946 #    This will smooth over some of the rough edges, and blend
947 #    pixels when scaling down, at the cost of blurring some
948 #    edge pixels when images are scaled by non-integer sizes.
949 #    type: float
950 # gui_scaling = 1.0
951
952 #    When gui_scaling_filter is true, all GUI images need to be
953 #    filtered in software, but some images are generated directly
954 #    to hardware (e.g. render-to-texture for nodes in inventory).
955 #    type: bool
956 # gui_scaling_filter = false
957
958 #    When gui_scaling_filter_txr2img is true, copy those images
959 #    from hardware to software for scaling.  When false, fall back
960 #    to the old scaling method, for video drivers that don't
961 #    properly support downloading textures back from hardware.
962 #    type: bool
963 # gui_scaling_filter_txr2img = true
964
965 #    Delay showing tooltips, stated in milliseconds.
966 #    type: int
967 # tooltip_show_delay = 400
968
969 #    Append item name to tooltip.
970 #    type: bool
971 # tooltip_append_itemname = false
972
973 #    Whether FreeType fonts are used, requires FreeType support to be compiled in.
974 #    type: bool
975 # freetype = true
976
977 #    Path to TrueTypeFont or bitmap.
978 #    type: filepath
979 # font_path = fonts/liberationsans.ttf
980
981 #    type: int
982 # font_size = 16
983
984 #    Font shadow offset, if 0 then shadow will not be drawn.
985 #    type: int
986 # font_shadow = 1
987
988 #    Font shadow alpha (opaqueness, between 0 and 255).
989 #    type: int min: 0 max: 255
990 # font_shadow_alpha = 127
991
992 #    type: filepath
993 # mono_font_path = fonts/liberationmono.ttf
994
995 #    type: int
996 # mono_font_size = 15
997
998 #    This font will be used for certain languages.
999 #    type: filepath
1000 # fallback_font_path = fonts/DroidSansFallbackFull.ttf
1001
1002 #    type: int
1003 # fallback_font_size = 15
1004
1005 #    type: int
1006 # fallback_font_shadow = 1
1007
1008 #    type: int min: 0 max: 255
1009 # fallback_font_shadow_alpha = 128
1010
1011 #    Path to save screenshots at.
1012 #    type: path
1013 # screenshot_path =
1014
1015 #    Format of screenshots.
1016 #    type: enum values: png, jpg, bmp, pcx, ppm, tga
1017 # screenshot_format = png
1018
1019 #    Screenshot quality. Only used for JPEG format.
1020 #    1 means worst quality; 100 means best quality.
1021 #    Use 0 for default quality.
1022 #    type: int min: 0 max: 100
1023 # screenshot_quality = 0
1024
1025 ## Advanced
1026
1027 #    Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k screens.
1028 #    type: int
1029 # screen_dpi = 72
1030
1031 #    Windows systems only: Start Minetest with the command line window in the background.
1032 #    Contains the same information as the file debug.txt (default name).
1033 #    type: bool
1034 # enable_console = false
1035
1036 #
1037 # Sound
1038 #
1039
1040 #    type: bool
1041 # enable_sound = true
1042
1043 #    type: float min: 0 max: 1
1044 # sound_volume = 0.7
1045
1046 #    type: bool
1047 # mute_sound = false
1048
1049 #
1050 # Client
1051 #
1052
1053 ## Network
1054
1055 #    Address to connect to.
1056 #    Leave this blank to start a local server.
1057 #    Note that the address field in the main menu overrides this setting.
1058 #    type: string
1059 # address =
1060
1061 #    Port to connect to (UDP).
1062 #    Note that the port field in the main menu overrides this setting.
1063 #    type: int min: 1 max: 65535
1064 # remote_port = 30000
1065
1066 #    Save the map received by the client on disk.
1067 #    type: bool
1068 # enable_local_map_saving = false
1069
1070 #    Enable usage of remote media server (if provided by server).
1071 #    Remote servers offer a significantly faster way to download media (e.g. textures)
1072 #    when connecting to the server.
1073 #    type: bool
1074 # enable_remote_media_server = true
1075
1076 #    Enable Lua modding support on client.
1077 #    This support is experimental and API can change.
1078 #    type: bool
1079 # enable_client_modding = false
1080
1081 #    URL to the server list displayed in the Multiplayer Tab.
1082 #    type: string
1083 # serverlist_url = servers.minetest.net
1084
1085 #    File in client/serverlist/ that contains your favorite servers displayed in the
1086 #    Multiplayer Tab.
1087 #    type: string
1088 # serverlist_file = favoriteservers.txt
1089
1090 #    Maximum size of the out chat queue.
1091 #    0 to disable queueing and -1 to make the queue size unlimited.
1092 #    type: int
1093 # max_out_chat_queue_size = 20
1094
1095 ## Advanced
1096
1097 #    Timeout for client to remove unused map data from memory.
1098 #    type: int
1099 # client_unload_unused_data_timeout = 600
1100
1101 #    Maximum number of mapblocks for client to be kept in memory.
1102 #    Set to -1 for unlimited amount.
1103 #    type: int
1104 # client_mapblock_limit = 5000
1105
1106 #    Whether to show the client debug info (has the same effect as hitting F5).
1107 #    type: bool
1108 # show_debug = false
1109
1110 #
1111 # Server / Singleplayer
1112 #
1113
1114 #    Name of the server, to be displayed when players join and in the serverlist.
1115 #    type: string
1116 # server_name = Minetest server
1117
1118 #    Description of server, to be displayed when players join and in the serverlist.
1119 #    type: string
1120 # server_description = mine here
1121
1122 #    Domain name of server, to be displayed in the serverlist.
1123 #    type: string
1124 # server_address = game.minetest.net
1125
1126 #    Homepage of server, to be displayed in the serverlist.
1127 #    type: string
1128 # server_url = https://minetest.net
1129
1130 #    Automatically report to the serverlist.
1131 #    type: bool
1132 # server_announce = false
1133
1134 #    Announce to this serverlist.
1135 #    type: string
1136 # serverlist_url = servers.minetest.net
1137
1138 #    Remove color codes from incoming chat messages
1139 #    Use this to stop players from being able to use color in their messages
1140 #    type: bool
1141 # strip_color_codes = false
1142
1143 ## Network
1144
1145 #    Network port to listen (UDP).
1146 #    This value will be overridden when starting from the main menu.
1147 #    type: int
1148 # port = 30000
1149
1150 #    The network interface that the server listens on.
1151 #    type: string
1152 # bind_address =
1153
1154 #    Enable to disallow old clients from connecting.
1155 #    Older clients are compatible in the sense that they will not crash when connecting
1156 #    to new servers, but they may not support all new features that you are expecting.
1157 #    type: bool
1158 # strict_protocol_version_checking = false
1159
1160 #    Specifies URL from which client fetches media instead of using UDP.
1161 #    $filename should be accessible from $remote_media$filename via cURL
1162 #    (obviously, remote_media should end with a slash).
1163 #    Files that are not present will be fetched the usual way.
1164 #    type: string
1165 # remote_media =
1166
1167 #    Enable/disable running an IPv6 server.
1168 #    Ignored if bind_address is set.
1169 #    type: bool
1170 # ipv6_server = false
1171
1172 ### Advanced
1173
1174 #    Maximum number of blocks that are simultaneously sent per client.
1175 #    The maximum total count is calculated dynamically:
1176 #    max_total = ceil((#clients + max_users) * per_client / 4)
1177 #    type: int
1178 # max_simultaneous_block_sends_per_client = 40
1179
1180 #    To reduce lag, block transfers are slowed down when a player is building something.
1181 #    This determines how long they are slowed down after placing or removing a node.
1182 #    type: float
1183 # full_block_send_enable_min_time_from_building = 2.0
1184
1185 #    Maximum number of packets sent per send step, if you have a slow connection
1186 #    try reducing it, but don't reduce it to a number below double of targeted
1187 #    client number.
1188 #    type: int
1189 # max_packets_per_iteration = 1024
1190
1191 ## Game
1192
1193 #    Default game when creating a new world.
1194 #    This will be overridden when creating a world from the main menu.
1195 #    type: string
1196 # default_game = minetest
1197
1198 #    Message of the day displayed to players connecting.
1199 #    type: string
1200 # motd =
1201
1202 #    Maximum number of players that can be connected simultaneously.
1203 #    type: int
1204 # max_users = 15
1205
1206 #    World directory (everything in the world is stored here).
1207 #    Not needed if starting from the main menu.
1208 #    type: path
1209 # map-dir =
1210
1211 #    Time in seconds for item entity (dropped items) to live.
1212 #    Setting it to -1 disables the feature.
1213 #    type: int
1214 # item_entity_ttl = 900
1215
1216 #    Enable players getting damage and dying.
1217 #    type: bool
1218 # enable_damage = false
1219
1220 #    Enable creative mode for new created maps.
1221 #    type: bool
1222 # creative_mode = false
1223
1224 #    A chosen map seed for a new map, leave empty for random.
1225 #    Will be overridden when creating a new world in the main menu.
1226 #    type: string
1227 # fixed_map_seed =
1228
1229 #    New users need to input this password.
1230 #    type: string
1231 # default_password =
1232
1233 #    The privileges that new users automatically get.
1234 #    See /privs in game for a full list on your server and mod configuration.
1235 #    type: string
1236 # default_privs = interact, shout
1237
1238 #    Privileges that players with basic_privs can grant
1239 #    type: string
1240 # basic_privs = interact, shout
1241
1242 #    Whether players are shown to clients without any range limit.
1243 #    Deprecated, use the setting player_transfer_distance instead.
1244 #    type: bool
1245 # unlimited_player_transfer_distance = true
1246
1247 #    Defines the maximal player transfer distance in blocks (0 = unlimited).
1248 #    type: int
1249 # player_transfer_distance = 0
1250
1251 #    Whether to allow players to damage and kill each other.
1252 #    type: bool
1253 # enable_pvp = true
1254
1255 #    Enable mod channels support.
1256 #    type: bool
1257 # enable_mod_channels = false
1258
1259 #    If this is set, players will always (re)spawn at the given position.
1260 #    type: string
1261 # static_spawnpoint =
1262
1263 #    If enabled, new players cannot join with an empty password.
1264 #    type: bool
1265 # disallow_empty_password = false
1266
1267 #    If enabled, disable cheat prevention in multiplayer.
1268 #    type: bool
1269 # disable_anticheat = false
1270
1271 #    If enabled, actions are recorded for rollback.
1272 #    This option is only read when server starts.
1273 #    type: bool
1274 # enable_rollback_recording = false
1275
1276 #    A message to be displayed to all clients when the server shuts down.
1277 #    type: string
1278 # kick_msg_shutdown = Server shutting down.
1279
1280 #    A message to be displayed to all clients when the server crashes.
1281 #    type: string
1282 # kick_msg_crash = This server has experienced an internal error. You will now be disconnected.
1283
1284 #    Whether to ask clients to reconnect after a (Lua) crash.
1285 #    Set this to true if your server is set up to restart automatically.
1286 #    type: bool
1287 # ask_reconnect_on_crash = false
1288
1289 #    From how far clients know about objects, stated in mapblocks (16 nodes).
1290 #    
1291 #    Setting this larger than active_block_range will also cause the server
1292 #    to maintain active objects up to this distance in the direction the
1293 #    player is looking. (This can avoid mobs suddenly disappearing from view)
1294 #    type: int
1295 # active_object_send_range_blocks = 3
1296
1297 #    The radius of the volume of blocks around every player that is subject to the
1298 #    active block stuff, stated in mapblocks (16 nodes).
1299 #    In active blocks objects are loaded and ABMs run.
1300 #    This is also the minimum range in which active objects (mobs) are maintained.
1301 #    This should be configured together with active_object_range.
1302 #    type: int
1303 # active_block_range = 3
1304
1305 #    From how far blocks are sent to clients, stated in mapblocks (16 nodes).
1306 #    type: int
1307 # max_block_send_distance = 9
1308
1309 #    Maximum number of forceloaded mapblocks.
1310 #    type: int
1311 # max_forceloaded_blocks = 16
1312
1313 #    Interval of sending time of day to clients.
1314 #    type: int
1315 # time_send_interval = 5
1316
1317 #    Controls length of day/night cycle.
1318 #    Examples:
1319 #    72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged.
1320 #    type: int
1321 # time_speed = 72
1322
1323 #    Time of day when a new world is started, in millihours (0-23999).
1324 #    type: int min: 0 max: 23999
1325 # world_start_time = 5250
1326
1327 #    Interval of saving important changes in the world, stated in seconds.
1328 #    type: float
1329 # server_map_save_interval = 5.3
1330
1331 #    Set the maximum character length of a chat message sent by clients.
1332 #    type: int
1333 # chat_message_max_size = 500
1334
1335 #    Amount of messages a player may send per 10 seconds.
1336 #    type: float
1337 # chat_message_limit_per_10sec = 10.0
1338
1339 #    Kick players who sent more than X messages per 10 seconds.
1340 #    type: int
1341 # chat_message_limit_trigger_kick = 50
1342
1343 ### Physics
1344
1345 #    type: float
1346 # movement_acceleration_default = 3
1347
1348 #    type: float
1349 # movement_acceleration_air = 2
1350
1351 #    type: float
1352 # movement_acceleration_fast = 10
1353
1354 #    type: float
1355 # movement_speed_walk = 4
1356
1357 #    type: float
1358 # movement_speed_crouch = 1.35
1359
1360 #    type: float
1361 # movement_speed_fast = 20
1362
1363 #    type: float
1364 # movement_speed_climb = 3
1365
1366 #    type: float
1367 # movement_speed_jump = 6.5
1368
1369 #    type: float
1370 # movement_liquid_fluidity = 1
1371
1372 #    type: float
1373 # movement_liquid_fluidity_smooth = 0.5
1374
1375 #    type: float
1376 # movement_liquid_sink = 10
1377
1378 #    type: float
1379 # movement_gravity = 9.81
1380
1381 ### Advanced
1382
1383 #    Handling for deprecated lua api calls:
1384 #    -    legacy: (try to) mimic old behaviour (default for release).
1385 #    -    log: mimic and log backtrace of deprecated call (default for debug).
1386 #    -    error: abort on usage of deprecated call (suggested for mod developers).
1387 #    type: enum values: legacy, log, error
1388 # deprecated_lua_api_handling = legacy
1389
1390 #    Number of extra blocks that can be loaded by /clearobjects at once.
1391 #    This is a trade-off between sqlite transaction overhead and
1392 #    memory consumption (4096=100MB, as a rule of thumb).
1393 #    type: int
1394 # max_clearobjects_extra_loaded_blocks = 4096
1395
1396 #    How much the server will wait before unloading unused mapblocks.
1397 #    Higher value is smoother, but will use more RAM.
1398 #    type: int
1399 # server_unload_unused_data_timeout = 29
1400
1401 #    Maximum number of statically stored objects in a block.
1402 #    type: int
1403 # max_objects_per_block = 64
1404
1405 #    See https://www.sqlite.org/pragma.html#pragma_synchronous
1406 #    type: enum values: 0, 1, 2
1407 # sqlite_synchronous = 2
1408
1409 #    Length of a server tick and the interval at which objects are generally updated over
1410 #    network.
1411 #    type: float
1412 # dedicated_server_step = 0.09
1413
1414 #    Length of time between active block management cycles
1415 #    type: float
1416 # active_block_mgmt_interval = 2.0
1417
1418 #    Length of time between Active Block Modifier (ABM) execution cycles
1419 #    type: float
1420 # abm_interval = 1.0
1421
1422 #    Length of time between NodeTimer execution cycles
1423 #    type: float
1424 # nodetimer_interval = 0.2
1425
1426 #    If enabled, invalid world data won't cause the server to shut down.
1427 #    Only enable this if you know what you are doing.
1428 #    type: bool
1429 # ignore_world_load_errors = false
1430
1431 #    Max liquids processed per step.
1432 #    type: int
1433 # liquid_loop_max = 100000
1434
1435 #    The time (in seconds) that the liquids queue may grow beyond processing
1436 #    capacity until an attempt is made to decrease its size by dumping old queue
1437 #    items.  A value of 0 disables the functionality.
1438 #    type: int
1439 # liquid_queue_purge_time = 0
1440
1441 #    Liquid update interval in seconds.
1442 #    type: float
1443 # liquid_update = 1.0
1444
1445 #    At this distance the server will aggressively optimize which blocks are sent to
1446 #    clients.
1447 #    Small values potentially improve performance a lot, at the expense of visible
1448 #    rendering glitches (some blocks will not be rendered under water and in caves,
1449 #    as well as sometimes on land).
1450 #    Setting this to a value greater than max_block_send_distance disables this
1451 #    optimization.
1452 #    Stated in mapblocks (16 nodes).
1453 #    type: int min: 2
1454 # block_send_optimize_distance = 4
1455
1456 #    If enabled the server will perform map block occlusion culling based on
1457 #    on the eye position of the player. This can reduce the number of blocks
1458 #    sent to the client 50-80%. The client will not longer receive most invisible
1459 #    so that the utility of noclip mode is reduced.
1460 #    type: bool
1461 # server_side_occlusion_culling = true
1462
1463 #    Restricts the access of certain client-side functions on servers
1464 #    Combine these byteflags below to restrict client-side features:
1465 #    LOAD_CLIENT_MODS: 1 (disable client mods loading)
1466 #    CHAT_MESSAGES: 2 (disable send_chat_message call client-side)
1467 #    READ_ITEMDEFS: 4 (disable get_item_def call client-side)
1468 #    READ_NODEDEFS: 8 (disable get_node_def call client-side)
1469 #    LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to
1470 #    csm_restriction_noderange)
1471 #    READ_PLAYERINFO: 32 (disable get_player_names call client-side)
1472 #    type: int
1473 # csm_restriction_flags = 62
1474
1475 #    If the CSM restriction for node range is enabled, get_node calls are limited
1476 #    to this distance from the player to the node.
1477 #    type: int
1478 # csm_restriction_noderange = 0
1479
1480 ## Security
1481
1482 #    Prevent mods from doing insecure things like running shell commands.
1483 #    type: bool
1484 # secure.enable_security = true
1485
1486 #    Comma-separated list of trusted mods that are allowed to access insecure
1487 #    functions even when mod security is on (via request_insecure_environment()).
1488 #    type: string
1489 # secure.trusted_mods =
1490
1491 #    Comma-separated list of mods that are allowed to access HTTP APIs, which
1492 #    allow them to upload and download data to/from the internet.
1493 #    type: string
1494 # secure.http_mods =
1495
1496 ## Advanced
1497
1498 ### Profiling
1499
1500 #    Load the game profiler to collect game profiling data.
1501 #    Provides a /profiler command to access the compiled profile.
1502 #    Useful for mod developers and server operators.
1503 #    type: bool
1504 # profiler.load = false
1505
1506 #    The default format in which profiles are being saved,
1507 #    when calling `/profiler save [format]` without format.
1508 #    type: enum values: txt, csv, lua, json, json_pretty
1509 # profiler.default_report_format = txt
1510
1511 #    The file path relative to your worldpath in which profiles will be saved to.
1512 #    type: string
1513 # profiler.report_path = ""
1514
1515 #### Instrumentation
1516
1517 #    Instrument the methods of entities on registration.
1518 #    type: bool
1519 # instrument.entity = true
1520
1521 #    Instrument the action function of Active Block Modifiers on registration.
1522 #    type: bool
1523 # instrument.abm = true
1524
1525 #    Instrument the action function of Loading Block Modifiers on registration.
1526 #    type: bool
1527 # instrument.lbm = true
1528
1529 #    Instrument chatcommands on registration.
1530 #    type: bool
1531 # instrument.chatcommand = true
1532
1533 #    Instrument global callback functions on registration.
1534 #    (anything you pass to a minetest.register_*() function)
1535 #    type: bool
1536 # instrument.global_callback = true
1537
1538 ##### Advanced
1539
1540 #    Instrument builtin.
1541 #    This is usually only needed by core/builtin contributors
1542 #    type: bool
1543 # instrument.builtin = false
1544
1545 #    Have the profiler instrument itself:
1546 #    * Instrument an empty function.
1547 #    This estimates the overhead, that instrumentation is adding (+1 function call).
1548 #    * Instrument the sampler being used to update the statistics.
1549 #    type: bool
1550 # instrument.profiler = false
1551
1552 #
1553 # Client and Server
1554 #
1555
1556 #    Name of the player.
1557 #    When running a server, clients connecting with this name are admins.
1558 #    When starting from the main menu, this is overridden.
1559 #    type: string
1560 # name =
1561
1562 #    Set the language. Leave empty to use the system language.
1563 #    A restart is required after changing this.
1564 #    type: enum values: , be, ca, cs, da, de, dv, en, eo, es, et, fr, he, hu, id, it, ja, jbo, ko, ky, lt, ms, nb, nl, pl, pt, pt_BR, ro, ru, sl, sr_Cyrl, sv, sw, tr, uk, zh_CN, zh_TW
1565 # language =
1566
1567 #    Level of logging to be written to debug.txt:
1568 #    -    <nothing> (no logging)
1569 #    -    none (messages with no level)
1570 #    -    error
1571 #    -    warning
1572 #    -    action
1573 #    -    info
1574 #    -    verbose
1575 #    type: enum values: , none, error, warning, action, info, verbose
1576 # debug_log_level = action
1577
1578 #    IPv6 support.
1579 #    type: bool
1580 # enable_ipv6 = true
1581
1582 ## Advanced
1583
1584 #    Default timeout for cURL, stated in milliseconds.
1585 #    Only has an effect if compiled with cURL.
1586 #    type: int
1587 # curl_timeout = 5000
1588
1589 #    Limits number of parallel HTTP requests. Affects:
1590 #    -    Media fetch if server uses remote_media setting.
1591 #    -    Serverlist download and server announcement.
1592 #    -    Downloads performed by main menu (e.g. mod manager).
1593 #    Only has an effect if compiled with cURL.
1594 #    type: int
1595 # curl_parallel_limit = 8
1596
1597 #    Maximum time in ms a file download (e.g. a mod download) may take.
1598 #    type: int
1599 # curl_file_download_timeout = 300000
1600
1601 #    Makes DirectX work with LuaJIT. Disable if it causes troubles.
1602 #    type: bool
1603 # high_precision_fpu = true
1604
1605 #    Changes the main menu UI:
1606 #    -   Full:  Multple singleplayer worlds, game choice, texture pack chooser, etc.
1607 #    -   Simple: One singleplayer world, no game or texture pack choosers. May be
1608 #    necessary for smaller screens.
1609 #    -   Auto: Simple on Android, full on everything else.
1610 #    type: enum values: auto, full, simple
1611 # main_menu_style = auto
1612
1613 #    Replaces the default main menu with a custom one.
1614 #    type: string
1615 # main_menu_script =
1616
1617 #    Print the engine's profiling data in regular intervals (in seconds).
1618 #    0 = disable. Useful for developers.
1619 #    type: int
1620 # profiler_print_interval = 0
1621
1622 #
1623 # Mapgen
1624 #
1625
1626 #    Name of map generator to be used when creating a new world.
1627 #    Creating a world in the main menu will override this.
1628 #    Current stable mapgens:
1629 #    v5, v6, v7 (except floatlands), flat, singlenode.
1630 #    'stable' means the terrain shape in an existing world will not be changed
1631 #    in the future. Note that biomes are defined by games and may still change.
1632 #    type: enum values: v5, v6, v7, valleys, carpathian, fractal, flat, singlenode
1633 # mg_name = v7
1634
1635 #    Water surface level of the world.
1636 #    type: int
1637 # water_level = 1
1638
1639 #    From how far blocks are generated for clients, stated in mapblocks (16 nodes).
1640 #    type: int
1641 # max_block_generate_distance = 6
1642
1643 #    Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).
1644 #    Only mapchunks completely within the mapgen limit are generated.
1645 #    Value is stored per-world.
1646 #    type: int min: 0 max: 31000
1647 # mapgen_limit = 31000
1648
1649 #    Global map generation attributes.
1650 #    In Mapgen v6 the 'decorations' flag controls all decorations except trees
1651 #    and junglegrass, in all other mapgens this flag controls all decorations.
1652 #    Flags that are not enabled are not modified from the default.
1653 #    Flags starting with 'no' are used to explicitly disable them.
1654 #    type: flags possible values: caves, dungeons, light, decorations, biomes, nocaves, nodungeons, nolight, nodecorations, nobiomes
1655 # mg_flags = caves,dungeons,light,decorations,biomes
1656
1657 #    Whether dungeons occasionally project from the terrain.
1658 #    type: bool
1659 # projecting_dungeons = true
1660
1661 ## Biome API temperature and humidity noise parameters
1662
1663 #    Temperature variation for biomes.
1664 #    type: noise_params_2d
1665 # mg_biome_np_heat = {
1666 #    offset      = 50,
1667 #    scale       = 50,
1668 #    spread      = (1000, 1000, 1000),
1669 #    seed        = 5349,
1670 #    octaves     = 3,
1671 #    persistence = 0.5,
1672 #    lacunarity  = 2.0,
1673 #    flags       = eased
1674 # }
1675
1676 #    Small-scale temperature variation for blending biomes on borders.
1677 #    type: noise_params_2d
1678 # mg_biome_np_heat_blend = {
1679 #    offset      = 0,
1680 #    scale       = 1.5,
1681 #    spread      = (8, 8, 8),
1682 #    seed        = 13,
1683 #    octaves     = 2,
1684 #    persistence = 1.0,
1685 #    lacunarity  = 2.0,
1686 #    flags       = eased
1687 # }
1688
1689 #    Humidity variation for biomes.
1690 #    type: noise_params_2d
1691 # mg_biome_np_humidity = {
1692 #    offset      = 50,
1693 #    scale       = 50,
1694 #    spread      = (1000, 1000, 1000),
1695 #    seed        = 842,
1696 #    octaves     = 3,
1697 #    persistence = 0.5,
1698 #    lacunarity  = 2.0,
1699 #    flags       = eased
1700 # }
1701
1702 #    Small-scale humidity variation for blending biomes on borders.
1703 #    type: noise_params_2d
1704 # mg_biome_np_humidity_blend = {
1705 #    offset      = 0,
1706 #    scale       = 1.5,
1707 #    spread      = (8, 8, 8),
1708 #    seed        = 90003,
1709 #    octaves     = 2,
1710 #    persistence = 1.0,
1711 #    lacunarity  = 2.0,
1712 #    flags       = eased
1713 # }
1714
1715 ## Mapgen V5
1716
1717 #    Map generation attributes specific to Mapgen v5.
1718 #    Flags that are not enabled are not modified from the default.
1719 #    Flags starting with 'no' are used to explicitly disable them.
1720 #    type: flags possible values: caverns, nocaverns
1721 # mgv5_spflags = caverns
1722
1723 #    Controls width of tunnels, a smaller value creates wider tunnels.
1724 #    type: float
1725 # mgv5_cave_width = 0.09
1726
1727 #    Y of upper limit of large caves.
1728 #    type: int
1729 # mgv5_large_cave_depth = -256
1730
1731 #    Y of upper limit of lava in large caves.
1732 #    type: int
1733 # mgv5_lava_depth = -256
1734
1735 #    Y-level of cavern upper limit.
1736 #    type: int
1737 # mgv5_cavern_limit = -256
1738
1739 #    Y-distance over which caverns expand to full size.
1740 #    type: int
1741 # mgv5_cavern_taper = 256
1742
1743 #    Defines full size of caverns, smaller values create larger caverns.
1744 #    type: float
1745 # mgv5_cavern_threshold = 0.7
1746
1747 #    Lower Y limit of dungeons.
1748 #    type: int
1749 # mgv5_dungeon_ymin = -31000
1750
1751 #    Upper Y limit of dungeons.
1752 #    type: int
1753 # mgv5_dungeon_ymax = 31000
1754
1755 ### Noises
1756
1757 #    Variation of biome filler depth.
1758 #    type: noise_params_2d
1759 # mgv5_np_filler_depth = {
1760 #    offset      = 0,
1761 #    scale       = 1,
1762 #    spread      = (150, 150, 150),
1763 #    seed        = 261,
1764 #    octaves     = 4,
1765 #    persistence = 0.7,
1766 #    lacunarity  = 2.0,
1767 #    flags       = eased
1768 # }
1769
1770 #    Variation of terrain vertical scale.
1771 #    When noise is < -0.55 terrain is near-flat.
1772 #    type: noise_params_2d
1773 # mgv5_np_factor = {
1774 #    offset      = 0,
1775 #    scale       = 1,
1776 #    spread      = (250, 250, 250),
1777 #    seed        = 920381,
1778 #    octaves     = 3,
1779 #    persistence = 0.45,
1780 #    lacunarity  = 2.0,
1781 #    flags       = eased
1782 # }
1783
1784 #    Y-level of average terrain surface.
1785 #    type: noise_params_2d
1786 # mgv5_np_height = {
1787 #    offset      = 0,
1788 #    scale       = 10,
1789 #    spread      = (250, 250, 250),
1790 #    seed        = 84174,
1791 #    octaves     = 4,
1792 #    persistence = 0.5,
1793 #    lacunarity  = 2.0,
1794 #    flags       = eased
1795 # }
1796
1797 #    First of two 3D noises that together define tunnels.
1798 #    type: noise_params_3d
1799 # mgv5_np_cave1 = {
1800 #    offset      = 0,
1801 #    scale       = 12,
1802 #    spread      = (61, 61, 61),
1803 #    seed        = 52534,
1804 #    octaves     = 3,
1805 #    persistence = 0.5,
1806 #    lacunarity  = 2.0,
1807 #    flags       = 
1808 # }
1809
1810 #    Second of two 3D noises that together define tunnels.
1811 #    type: noise_params_3d
1812 # mgv5_np_cave2 = {
1813 #    offset      = 0,
1814 #    scale       = 12,
1815 #    spread      = (67, 67, 67),
1816 #    seed        = 10325,
1817 #    octaves     = 3,
1818 #    persistence = 0.5,
1819 #    lacunarity  = 2.0,
1820 #    flags       = 
1821 # }
1822
1823 #    3D noise defining giant caverns.
1824 #    type: noise_params_3d
1825 # mgv5_np_cavern = {
1826 #    offset      = 0,
1827 #    scale       = 1,
1828 #    spread      = (384, 128, 384),
1829 #    seed        = 723,
1830 #    octaves     = 5,
1831 #    persistence = 0.63,
1832 #    lacunarity  = 2.0,
1833 #    flags       = 
1834 # }
1835
1836 #    3D noise defining terrain.
1837 #    type: noise_params_3d
1838 # mgv5_np_ground = {
1839 #    offset      = 0,
1840 #    scale       = 40,
1841 #    spread      = (80, 80, 80),
1842 #    seed        = 983240,
1843 #    octaves     = 4,
1844 #    persistence = 0.55,
1845 #    lacunarity  = 2.0,
1846 #    flags       = eased
1847 # }
1848
1849 ## Mapgen V6
1850
1851 #    Map generation attributes specific to Mapgen v6.
1852 #    The 'snowbiomes' flag enables the new 5 biome system.
1853 #    When the new biome system is enabled jungles are automatically enabled and
1854 #    the 'jungles' flag is ignored.
1855 #    Flags that are not enabled are not modified from the default.
1856 #    Flags starting with 'no' are used to explicitly disable them.
1857 #    type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, flat, trees, nojungles, nobiomeblend, nomudflow, nosnowbiomes, noflat, notrees
1858 # mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes,trees
1859
1860 #    Deserts occur when np_biome exceeds this value.
1861 #    When the new biome system is enabled, this is ignored.
1862 #    type: float
1863 # mgv6_freq_desert = 0.45
1864
1865 #    Sandy beaches occur when np_beach exceeds this value.
1866 #    type: float
1867 # mgv6_freq_beach = 0.15
1868
1869 #    Lower Y limit of dungeons.
1870 #    type: int
1871 # mgv6_dungeon_ymin = -31000
1872
1873 #    Upper Y limit of dungeons.
1874 #    type: int
1875 # mgv6_dungeon_ymax = 31000
1876
1877 ### Noises
1878
1879 #    Y-level of lower terrain and seabed.
1880 #    type: noise_params_2d
1881 # mgv6_np_terrain_base = {
1882 #    offset      = -4,
1883 #    scale       = 20,
1884 #    spread      = (250, 250, 250),
1885 #    seed        = 82341,
1886 #    octaves     = 5,
1887 #    persistence = 0.6,
1888 #    lacunarity  = 2.0,
1889 #    flags       = eased
1890 # }
1891
1892 #    Y-level of higher terrain that creates cliffs.
1893 #    type: noise_params_2d
1894 # mgv6_np_terrain_higher = {
1895 #    offset      = 20,
1896 #    scale       = 16,
1897 #    spread      = (500, 500, 500),
1898 #    seed        = 85039,
1899 #    octaves     = 5,
1900 #    persistence = 0.6,
1901 #    lacunarity  = 2.0,
1902 #    flags       = eased
1903 # }
1904
1905 #    Varies steepness of cliffs.
1906 #    type: noise_params_2d
1907 # mgv6_np_steepness = {
1908 #    offset      = 0.85,
1909 #    scale       = 0.5,
1910 #    spread      = (125, 125, 125),
1911 #    seed        = -932,
1912 #    octaves     = 5,
1913 #    persistence = 0.7,
1914 #    lacunarity  = 2.0,
1915 #    flags       = eased
1916 # }
1917
1918 #    Defines distribution of higher terrain.
1919 #    type: noise_params_2d
1920 # mgv6_np_height_select = {
1921 #    offset      = 0.5,
1922 #    scale       = 1,
1923 #    spread      = (250, 250, 250),
1924 #    seed        = 4213,
1925 #    octaves     = 5,
1926 #    persistence = 0.69,
1927 #    lacunarity  = 2.0,
1928 #    flags       = eased
1929 # }
1930
1931 #    Varies depth of biome surface nodes.
1932 #    type: noise_params_2d
1933 # mgv6_np_mud = {
1934 #    offset      = 4,
1935 #    scale       = 2,
1936 #    spread      = (200, 200, 200),
1937 #    seed        = 91013,
1938 #    octaves     = 3,
1939 #    persistence = 0.55,
1940 #    lacunarity  = 2.0,
1941 #    flags       = eased
1942 # }
1943
1944 #    Defines areas with sandy beaches.
1945 #    type: noise_params_2d
1946 # mgv6_np_beach = {
1947 #    offset      = 0,
1948 #    scale       = 1,
1949 #    spread      = (250, 250, 250),
1950 #    seed        = 59420,
1951 #    octaves     = 3,
1952 #    persistence = 0.50,
1953 #    lacunarity  = 2.0,
1954 #    flags       = eased
1955 # }
1956
1957 #    Temperature variation for biomes.
1958 #    type: noise_params_2d
1959 # mgv6_np_biome = {
1960 #    offset      = 0,
1961 #    scale       = 1,
1962 #    spread      = (500, 500, 500),
1963 #    seed        = 9130,
1964 #    octaves     = 3,
1965 #    persistence = 0.50,
1966 #    lacunarity  = 2.0,
1967 #    flags       = eased
1968 # }
1969
1970 #    Variation of number of caves.
1971 #    type: noise_params_2d
1972 # mgv6_np_cave = {
1973 #    offset      = 6,
1974 #    scale       = 6,
1975 #    spread      = (250, 250, 250),
1976 #    seed        = 34329,
1977 #    octaves     = 3,
1978 #    persistence = 0.50,
1979 #    lacunarity  = 2.0,
1980 #    flags       = eased
1981 # }
1982
1983 #    Humidity variation for biomes.
1984 #    type: noise_params_2d
1985 # mgv6_np_humidity = {
1986 #    offset      = 0.5,
1987 #    scale       = 0.5,
1988 #    spread      = (500, 500, 500),
1989 #    seed        = 72384,
1990 #    octaves     = 3,
1991 #    persistence = 0.50,
1992 #    lacunarity  = 2.0,
1993 #    flags       = eased
1994 # }
1995
1996 #    Defines tree areas and tree density.
1997 #    type: noise_params_2d
1998 # mgv6_np_trees = {
1999 #    offset      = 0,
2000 #    scale       = 1,
2001 #    spread      = (125, 125, 125),
2002 #    seed        = 2,
2003 #    octaves     = 4,
2004 #    persistence = 0.66,
2005 #    lacunarity  = 2.0,
2006 #    flags       = eased
2007 # }
2008
2009 #    Defines areas where trees have apples.
2010 #    type: noise_params_2d
2011 # mgv6_np_apple_trees = {
2012 #    offset      = 0,
2013 #    scale       = 1,
2014 #    spread      = (100, 100, 100),
2015 #    seed        = 342902,
2016 #    octaves     = 3,
2017 #    persistence = 0.45,
2018 #    lacunarity  = 2.0,
2019 #    flags       = eased
2020 # }
2021
2022 ## Mapgen V7
2023
2024 #    Map generation attributes specific to Mapgen v7.
2025 #    'ridges' enables the rivers.
2026 #    Flags that are not enabled are not modified from the default.
2027 #    Flags starting with 'no' are used to explicitly disable them.
2028 #    type: flags possible values: mountains, ridges, floatlands, caverns, nomountains, noridges, nofloatlands, nocaverns
2029 # mgv7_spflags = mountains,ridges,nofloatlands,caverns
2030
2031 #    Y of mountain density gradient zero level. Used to shift mountains vertically.
2032 #    type: int
2033 # mgv7_mount_zero_level = 0
2034
2035 #    Controls width of tunnels, a smaller value creates wider tunnels.
2036 #    type: float
2037 # mgv7_cave_width = 0.09
2038
2039 #    Y of upper limit of large caves.
2040 #    type: int
2041 # mgv7_large_cave_depth = -33
2042
2043 #    Y of upper limit of lava in large caves.
2044 #    type: int
2045 # mgv7_lava_depth = -256
2046
2047 #    Controls the density of mountain-type floatlands.
2048 #    Is a noise offset added to the 'mgv7_np_mountain' noise value.
2049 #    type: float
2050 # mgv7_float_mount_density = 0.6
2051
2052 #    Typical maximum height, above and below midpoint, of floatland mountains.
2053 #    type: float
2054 # mgv7_float_mount_height = 128.0
2055
2056 #    Alters how mountain-type floatlands taper above and below midpoint.
2057 #    type: float
2058 # mgv7_float_mount_exponent = 0.75
2059
2060 #    Y-level of floatland midpoint and lake surface.
2061 #    type: int
2062 # mgv7_floatland_level = 1280
2063
2064 #    Y-level to which floatland shadows extend.
2065 #    type: int
2066 # mgv7_shadow_limit = 1024
2067
2068 #    Y-level of cavern upper limit.
2069 #    type: int
2070 # mgv7_cavern_limit = -256
2071
2072 #    Y-distance over which caverns expand to full size.
2073 #    type: int
2074 # mgv7_cavern_taper = 256
2075
2076 #    Defines full size of caverns, smaller values create larger caverns.
2077 #    type: float
2078 # mgv7_cavern_threshold = 0.7
2079
2080 #    Lower Y limit of dungeons.
2081 #    type: int
2082 # mgv7_dungeon_ymin = -31000
2083
2084 #    Upper Y limit of dungeons.
2085 #    type: int
2086 # mgv7_dungeon_ymax = 31000
2087
2088 ### Noises
2089
2090 #    Y-level of higher terrain that creates cliffs.
2091 #    type: noise_params_2d
2092 # mgv7_np_terrain_base = {
2093 #    offset      = 4,
2094 #    scale       = 70,
2095 #    spread      = (600, 600, 600),
2096 #    seed        = 82341,
2097 #    octaves     = 5,
2098 #    persistence = 0.6,
2099 #    lacunarity  = 2.0,
2100 #    flags       = eased
2101 # }
2102
2103 #    Y-level of lower terrain and seabed.
2104 #    type: noise_params_2d
2105 # mgv7_np_terrain_alt = {
2106 #    offset      = 4,
2107 #    scale       = 25,
2108 #    spread      = (600, 600, 600),
2109 #    seed        = 5934,
2110 #    octaves     = 5,
2111 #    persistence = 0.6,
2112 #    lacunarity  = 2.0,
2113 #    flags       = eased
2114 # }
2115
2116 #    Varies roughness of terrain.
2117 #    Defines the 'persistence' value for terrain_base and terrain_alt noises.
2118 #    type: noise_params_2d
2119 # mgv7_np_terrain_persist = {
2120 #    offset      = 0.6,
2121 #    scale       = 0.1,
2122 #    spread      = (2000, 2000, 2000),
2123 #    seed        = 539,
2124 #    octaves     = 3,
2125 #    persistence = 0.6,
2126 #    lacunarity  = 2.0,
2127 #    flags       = eased
2128 # }
2129
2130 #    Defines distribution of higher terrain and steepness of cliffs.
2131 #    type: noise_params_2d
2132 # mgv7_np_height_select = {
2133 #    offset      = -8,
2134 #    scale       = 16,
2135 #    spread      = (500, 500, 500),
2136 #    seed        = 4213,
2137 #    octaves     = 6,
2138 #    persistence = 0.7,
2139 #    lacunarity  = 2.0,
2140 #    flags       = eased
2141 # }
2142
2143 #    Variation of biome filler depth.
2144 #    type: noise_params_2d
2145 # mgv7_np_filler_depth = {
2146 #    offset      = 0,
2147 #    scale       = 1.2,
2148 #    spread      = (150, 150, 150),
2149 #    seed        = 261,
2150 #    octaves     = 3,
2151 #    persistence = 0.7,
2152 #    lacunarity  = 2.0,
2153 #    flags       = eased
2154 # }
2155
2156 #    Variation of maximum mountain height (in nodes).
2157 #    type: noise_params_2d
2158 # mgv7_np_mount_height = {
2159 #    offset      = 256,
2160 #    scale       = 112,
2161 #    spread      = (1000, 1000, 1000),
2162 #    seed        = 72449,
2163 #    octaves     = 3,
2164 #    persistence = 0.6,
2165 #    lacunarity  = 2.0,
2166 #    flags       = eased
2167 # }
2168
2169 #    Defines large-scale river channel structure.
2170 #    type: noise_params_2d
2171 # mgv7_np_ridge_uwater = {
2172 #    offset      = 0,
2173 #    scale       = 1,
2174 #    spread      = (1000, 1000, 1000),
2175 #    seed        = 85039,
2176 #    octaves     = 5,
2177 #    persistence = 0.6,
2178 #    lacunarity  = 2.0,
2179 #    flags       = eased
2180 # }
2181
2182 #    Defines areas of floatland smooth terrain.
2183 #    Smooth floatlands occur when noise > 0.
2184 #    type: noise_params_2d
2185 # mgv7_np_floatland_base = {
2186 #    offset      = -0.6,
2187 #    scale       = 1.5,
2188 #    spread      = (600, 600, 600),
2189 #    seed        = 114,
2190 #    octaves     = 5,
2191 #    persistence = 0.6,
2192 #    lacunarity  = 2.0,
2193 #    flags       = eased
2194 # }
2195
2196 #    Variation of hill height and lake depth on floatland smooth terrain.
2197 #    type: noise_params_2d
2198 # mgv7_np_float_base_height = {
2199 #    offset      = 48,
2200 #    scale       = 24,
2201 #    spread      = (300, 300, 300),
2202 #    seed        = 907,
2203 #    octaves     = 4,
2204 #    persistence = 0.7,
2205 #    lacunarity  = 2.0,
2206 #    flags       = eased
2207 # }
2208
2209 #    3D noise defining mountain structure and height.
2210 #    Also defines structure of floatland mountain terrain.
2211 #    type: noise_params_3d
2212 # mgv7_np_mountain = {
2213 #    offset      = -0.6,
2214 #    scale       = 1,
2215 #    spread      = (250, 350, 250),
2216 #    seed        = 5333,
2217 #    octaves     = 5,
2218 #    persistence = 0.63,
2219 #    lacunarity  = 2.0,
2220 #    flags       = 
2221 # }
2222
2223 #    3D noise defining structure of river canyon walls.
2224 #    type: noise_params_3d
2225 # mgv7_np_ridge = {
2226 #    offset      = 0,
2227 #    scale       = 1,
2228 #    spread      = (100, 100, 100),
2229 #    seed        = 6467,
2230 #    octaves     = 4,
2231 #    persistence = 0.75,
2232 #    lacunarity  = 2.0,
2233 #    flags       = 
2234 # }
2235
2236 #    3D noise defining giant caverns.
2237 #    type: noise_params_3d
2238 # mgv7_np_cavern = {
2239 #    offset      = 0,
2240 #    scale       = 1,
2241 #    spread      = (384, 128, 384),
2242 #    seed        = 723,
2243 #    octaves     = 5,
2244 #    persistence = 0.63,
2245 #    lacunarity  = 2.0,
2246 #    flags       = 
2247 # }
2248
2249 #    First of two 3D noises that together define tunnels.
2250 #    type: noise_params_3d
2251 # mgv7_np_cave1 = {
2252 #    offset      = 0,
2253 #    scale       = 12,
2254 #    spread      = (61, 61, 61),
2255 #    seed        = 52534,
2256 #    octaves     = 3,
2257 #    persistence = 0.5,
2258 #    lacunarity  = 2.0,
2259 #    flags       = 
2260 # }
2261
2262 #    Second of two 3D noises that together define tunnels.
2263 #    type: noise_params_3d
2264 # mgv7_np_cave2 = {
2265 #    offset      = 0,
2266 #    scale       = 12,
2267 #    spread      = (67, 67, 67),
2268 #    seed        = 10325,
2269 #    octaves     = 3,
2270 #    persistence = 0.5,
2271 #    lacunarity  = 2.0,
2272 #    flags       = 
2273 # }
2274
2275 ## Mapgen Carpathian
2276
2277 #    Map generation attributes specific to Mapgen Carpathian.
2278 #    Flags that are not enabled are not modified from the default.
2279 #    Flags starting with 'no' are used to explicitly disable them.
2280 #    type: flags possible values: caverns, nocaverns
2281 # mgcarpathian_spflags = caverns
2282
2283 #    Defines the base ground level.
2284 #    type: float
2285 # mgcarpathian_base_level = 12.0
2286
2287 #    Controls width of tunnels, a smaller value creates wider tunnels.
2288 #    type: float
2289 # mgcarpathian_cave_width = 0.09
2290
2291 #    Y of upper limit of large caves.
2292 #    type: int
2293 # mgcarpathian_large_cave_depth = -33
2294
2295 #    Y of upper limit of lava in large caves.
2296 #    type: int
2297 # mgcarpathian_lava_depth = -256
2298
2299 #    Y-level of cavern upper limit.
2300 #    type: int
2301 # mgcarpathian_cavern_limit = -256
2302
2303 #    Y-distance over which caverns expand to full size.
2304 #    type: int
2305 # mgcarpathian_cavern_taper = 256
2306
2307 #    Defines full size of caverns, smaller values create larger caverns.
2308 #    type: float
2309 # mgcarpathian_cavern_threshold = 0.7
2310
2311 #    Lower Y limit of dungeons.
2312 #    type: int
2313 # mgcarpathian_dungeon_ymin = -31000
2314
2315 #    Upper Y limit of dungeons.
2316 #    type: int
2317 # mgcarpathian_dungeon_ymax = 31000
2318
2319 ### Noises
2320
2321 #    Variation of biome filler depth.
2322 #    type: noise_params_2d
2323 # mgcarpathian_np_filler_depth = {
2324 #    offset      = 0,
2325 #    scale       = 1,
2326 #    spread      = (128, 128, 128),
2327 #    seed        = 261,
2328 #    octaves     = 3,
2329 #    persistence = 0.7,
2330 #    lacunarity  = 2.0,
2331 #    flags       = eased
2332 # }
2333
2334 #    First of 4 2D noises that together define hill/mountain range height.
2335 #    type: noise_params_2d
2336 # mgcarpathian_np_height1 = {
2337 #    offset      = 0,
2338 #    scale       = 5,
2339 #    spread      = (251, 251, 251),
2340 #    seed        = 9613,
2341 #    octaves     = 5,
2342 #    persistence = 0.5,
2343 #    lacunarity  = 2.0,
2344 #    flags       = eased
2345 # }
2346
2347 #    Second of 4 2D noises that together define hill/mountain range height.
2348 #    type: noise_params_2d
2349 # mgcarpathian_np_height2 = {
2350 #    offset      = 0,
2351 #    scale       = 5,
2352 #    spread      = (383, 383, 383),
2353 #    seed        = 1949,
2354 #    octaves     = 5,
2355 #    persistence = 0.5,
2356 #    lacunarity  = 2.0,
2357 #    flags       = eased
2358 # }
2359
2360 #    Third of 4 2D noises that together define hill/mountain range height.
2361 #    type: noise_params_2d
2362 # mgcarpathian_np_height3 = {
2363 #    offset      = 0,
2364 #    scale       = 5,
2365 #    spread      = (509, 509, 509),
2366 #    seed        = 3211,
2367 #    octaves     = 5,
2368 #    persistence = 0.5,
2369 #    lacunarity  = 2.0,
2370 #    flags       = eased
2371 # }
2372
2373 #    Fourth of 4 2D noises that together define hill/mountain range height.
2374 #    type: noise_params_2d
2375 # mgcarpathian_np_height4 = {
2376 #    offset      = 0,
2377 #    scale       = 5,
2378 #    spread      = (631, 631, 631),
2379 #    seed        = 1583,
2380 #    octaves     = 5,
2381 #    persistence = 0.5,
2382 #    lacunarity  = 2.0,
2383 #    flags       = eased
2384 # }
2385
2386 #    2D noise that controls the size/occurance of rolling hills.
2387 #    type: noise_params_2d
2388 # mgcarpathian_np_hills_terrain = {
2389 #    offset      = 1,
2390 #    scale       = 1,
2391 #    spread      = (1301, 1301, 1301),
2392 #    seed        = 1692,
2393 #    octaves     = 3,
2394 #    persistence = 0.5,
2395 #    lacunarity  = 2.0,
2396 #    flags       = eased
2397 # }
2398
2399 #    2D noise that controls the size/occurance of ridged mountain ranges.
2400 #    type: noise_params_2d
2401 # mgcarpathian_np_ridge_terrain = {
2402 #    offset      = 1,
2403 #    scale       = 1,
2404 #    spread      = (1889, 1889, 1889),
2405 #    seed        = 3568,
2406 #    octaves     = 3,
2407 #    persistence = 0.5,
2408 #    lacunarity  = 2.0,
2409 #    flags       = eased
2410 # }
2411
2412 #    2D noise that controls the size/occurance of step mountain ranges.
2413 #    type: noise_params_2d
2414 # mgcarpathian_np_step_terrain = {
2415 #    offset      = 1,
2416 #    scale       = 1,
2417 #    spread      = (1889, 1889, 1889),
2418 #    seed        = 4157,
2419 #    octaves     = 3,
2420 #    persistence = 0.5,
2421 #    lacunarity  = 2.0,
2422 #    flags       = eased
2423 # }
2424
2425 #    2D noise that controls the shape/size of rolling hills.
2426 #    type: noise_params_2d
2427 # mgcarpathian_np_hills = {
2428 #    offset      = 0,
2429 #    scale       = 3,
2430 #    spread      = (257, 257, 257),
2431 #    seed        = 6604,
2432 #    octaves     = 6,
2433 #    persistence = 0.5,
2434 #    lacunarity  = 2.0,
2435 #    flags       = eased
2436 # }
2437
2438 #    2D noise that controls the shape/size of ridged mountains.
2439 #    type: noise_params_2d
2440 # mgcarpathian_np_ridge_mnt = {
2441 #    offset      = 0,
2442 #    scale       = 12,
2443 #    spread      = (743, 743, 743),
2444 #    seed        = 5520,
2445 #    octaves     = 6,
2446 #    persistence = 0.7,
2447 #    lacunarity  = 2.0,
2448 #    flags       = eased
2449 # }
2450
2451 #    2D noise that controls the shape/size of step mountains.
2452 #    type: noise_params_2d
2453 # mgcarpathian_np_step_mnt = {
2454 #    offset      = 0,
2455 #    scale       = 8,
2456 #    spread      = (509, 509, 509),
2457 #    seed        = 2590,
2458 #    octaves     = 6,
2459 #    persistence = 0.6,
2460 #    lacunarity  = 2.0,
2461 #    flags       = eased
2462 # }
2463
2464 #    3D noise for mountain overhangs, cliffs, etc. Usually small variations.
2465 #    type: noise_params_3d
2466 # mgcarpathian_np_mnt_var = {
2467 #    offset      = 0,
2468 #    scale       = 1,
2469 #    spread      = (499, 499, 499),
2470 #    seed        = 2490,
2471 #    octaves     = 5,
2472 #    persistence = 0.55,
2473 #    lacunarity  = 2.0,
2474 #    flags       = 
2475 # }
2476
2477 #    First of two 3D noises that together define tunnels.
2478 #    type: noise_params_3d
2479 # mgcarpathian_np_cave1 = {
2480 #    offset      = 0,
2481 #    scale       = 12,
2482 #    spread      = (61, 61, 61),
2483 #    seed        = 52534,
2484 #    octaves     = 3,
2485 #    persistence = 0.5,
2486 #    lacunarity  = 2.0,
2487 #    flags       = 
2488 # }
2489
2490 #    Second of two 3D noises that together define tunnels.
2491 #    type: noise_params_3d
2492 # mgcarpathian_np_cave2 = {
2493 #    offset      = 0,
2494 #    scale       = 12,
2495 #    spread      = (67, 67, 67),
2496 #    seed        = 10325,
2497 #    octaves     = 3,
2498 #    persistence = 0.5,
2499 #    lacunarity  = 2.0,
2500 #    flags       = 
2501 # }
2502
2503 #    3D noise defining giant caverns.
2504 #    type: noise_params_3d
2505 # mgcarpathian_np_cavern = {
2506 #    offset      = 0,
2507 #    scale       = 1,
2508 #    spread      = (384, 128, 384),
2509 #    seed        = 723,
2510 #    octaves     = 5,
2511 #    persistence = 0.63,
2512 #    lacunarity  = 2.0,
2513 #    flags       = 
2514 # }
2515
2516 ## Mapgen Flat
2517
2518 #    Map generation attributes specific to Mapgen flat.
2519 #    Occasional lakes and hills can be added to the flat world.
2520 #    Flags that are not enabled are not modified from the default.
2521 #    Flags starting with 'no' are used to explicitly disable them.
2522 #    type: flags possible values: lakes, hills, nolakes, nohills
2523 # mgflat_spflags = nolakes,nohills
2524
2525 #    Y of flat ground.
2526 #    type: int
2527 # mgflat_ground_level = 8
2528
2529 #    Y of upper limit of large caves.
2530 #    type: int
2531 # mgflat_large_cave_depth = -33
2532
2533 #    Y of upper limit of lava in large caves.
2534 #    type: int
2535 # mgflat_lava_depth = -256
2536
2537 #    Controls width of tunnels, a smaller value creates wider tunnels.
2538 #    type: float
2539 # mgflat_cave_width = 0.09
2540
2541 #    Terrain noise threshold for lakes.
2542 #    Controls proportion of world area covered by lakes.
2543 #    Adjust towards 0.0 for a larger proportion.
2544 #    type: float
2545 # mgflat_lake_threshold = -0.45
2546
2547 #    Controls steepness/depth of lake depressions.
2548 #    type: float
2549 # mgflat_lake_steepness = 48.0
2550
2551 #    Terrain noise threshold for hills.
2552 #    Controls proportion of world area covered by hills.
2553 #    Adjust towards 0.0 for a larger proportion.
2554 #    type: float
2555 # mgflat_hill_threshold = 0.45
2556
2557 #    Controls steepness/height of hills.
2558 #    type: float
2559 # mgflat_hill_steepness = 64.0
2560
2561 #    Lower Y limit of dungeons.
2562 #    type: int
2563 # mgflat_dungeon_ymin = -31000
2564
2565 #    Upper Y limit of dungeons.
2566 #    type: int
2567 # mgflat_dungeon_ymax = 31000
2568
2569 ### Noises
2570
2571 #    Defines location and terrain of optional hills and lakes.
2572 #    type: noise_params_2d
2573 # mgflat_np_terrain = {
2574 #    offset      = 0,
2575 #    scale       = 1,
2576 #    spread      = (600, 600, 600),
2577 #    seed        = 7244,
2578 #    octaves     = 5,
2579 #    persistence = 0.6,
2580 #    lacunarity  = 2.0,
2581 #    flags       = eased
2582 # }
2583
2584 #    Variation of biome filler depth.
2585 #    type: noise_params_2d
2586 # mgflat_np_filler_depth = {
2587 #    offset      = 0,
2588 #    scale       = 1.2,
2589 #    spread      = (150, 150, 150),
2590 #    seed        = 261,
2591 #    octaves     = 3,
2592 #    persistence = 0.7,
2593 #    lacunarity  = 2.0,
2594 #    flags       = eased
2595 # }
2596
2597 #    First of two 3D noises that together define tunnels.
2598 #    type: noise_params_3d
2599 # mgflat_np_cave1 = {
2600 #    offset      = 0,
2601 #    scale       = 12,
2602 #    spread      = (61, 61, 61),
2603 #    seed        = 52534,
2604 #    octaves     = 3,
2605 #    persistence = 0.5,
2606 #    lacunarity  = 2.0,
2607 #    flags       = 
2608 # }
2609
2610 #    Second of two 3D noises that together define tunnels.
2611 #    type: noise_params_3d
2612 # mgflat_np_cave2 = {
2613 #    offset      = 0,
2614 #    scale       = 12,
2615 #    spread      = (67, 67, 67),
2616 #    seed        = 10325,
2617 #    octaves     = 3,
2618 #    persistence = 0.5,
2619 #    lacunarity  = 2.0,
2620 #    flags       = 
2621 # }
2622
2623 ## Mapgen Fractal
2624
2625 #    Controls width of tunnels, a smaller value creates wider tunnels.
2626 #    type: float
2627 # mgfractal_cave_width = 0.09
2628
2629 #    Y of upper limit of large caves.
2630 #    type: int
2631 # mgfractal_large_cave_depth = -33
2632
2633 #    Y of upper limit of lava in large caves.
2634 #    type: int
2635 # mgfractal_lava_depth = -256
2636
2637 #    Lower Y limit of dungeons.
2638 #    type: int
2639 # mgfractal_dungeon_ymin = -31000
2640
2641 #    Upper Y limit of dungeons.
2642 #    type: int
2643 # mgfractal_dungeon_ymax = 31000
2644
2645 #    Selects one of 18 fractal types.
2646 #    1 = 4D "Roundy" mandelbrot set.
2647 #    2 = 4D "Roundy" julia set.
2648 #    3 = 4D "Squarry" mandelbrot set.
2649 #    4 = 4D "Squarry" julia set.
2650 #    5 = 4D "Mandy Cousin" mandelbrot set.
2651 #    6 = 4D "Mandy Cousin" julia set.
2652 #    7 = 4D "Variation" mandelbrot set.
2653 #    8 = 4D "Variation" julia set.
2654 #    9 = 3D "Mandelbrot/Mandelbar" mandelbrot set.
2655 #    10 = 3D "Mandelbrot/Mandelbar" julia set.
2656 #    11 = 3D "Christmas Tree" mandelbrot set.
2657 #    12 = 3D "Christmas Tree" julia set.
2658 #    13 = 3D "Mandelbulb" mandelbrot set.
2659 #    14 = 3D "Mandelbulb" julia set.
2660 #    15 = 3D "Cosine Mandelbulb" mandelbrot set.
2661 #    16 = 3D "Cosine Mandelbulb" julia set.
2662 #    17 = 4D "Mandelbulb" mandelbrot set.
2663 #    18 = 4D "Mandelbulb" julia set.
2664 #    type: int min: 1 max: 18
2665 # mgfractal_fractal = 1
2666
2667 #    Iterations of the recursive function.
2668 #    Increasing this increases the amount of fine detail, but also
2669 #    increases processing load.
2670 #    At iterations = 20 this mapgen has a similar load to mapgen V7.
2671 #    type: int
2672 # mgfractal_iterations = 11
2673
2674 #    (X,Y,Z) scale of fractal in nodes.
2675 #    Actual fractal size will be 2 to 3 times larger.
2676 #    These numbers can be made very large, the fractal does
2677 #    not have to fit inside the world.
2678 #    Increase these to 'zoom' into the detail of the fractal.
2679 #    Default is for a vertically-squashed shape suitable for
2680 #    an island, set all 3 numbers equal for the raw shape.
2681 #    type: v3f
2682 # mgfractal_scale = (4096.0, 1024.0, 4096.0)
2683
2684 #    (X,Y,Z) offset of fractal from world center in units of 'scale'.
2685 #    Can be used to move a desired point to (0, 0) to create a
2686 #    suitable spawn point, or to allow 'zooming in' on a desired
2687 #    point by increasing 'scale'.
2688 #    The default is tuned for a suitable spawn point for mandelbrot
2689 #    sets with default parameters, it may need altering in other
2690 #    situations.
2691 #    Range roughly -2 to 2. Multiply by 'scale' for offset in nodes.
2692 #    type: v3f
2693 # mgfractal_offset = (1.79, 0.0, 0.0)
2694
2695 #    W coordinate of the generated 3D slice of a 4D fractal.
2696 #    Determines which 3D slice of the 4D shape is generated.
2697 #    Alters the shape of the fractal.
2698 #    Has no effect on 3D fractals.
2699 #    Range roughly -2 to 2.
2700 #    type: float
2701 # mgfractal_slice_w = 0.0
2702
2703 #    Julia set only.
2704 #    X component of hypercomplex constant.
2705 #    Alters the shape of the fractal.
2706 #    Range roughly -2 to 2.
2707 #    type: float
2708 # mgfractal_julia_x = 0.33
2709
2710 #    Julia set only.
2711 #    Y component of hypercomplex constant.
2712 #    Alters the shape of the fractal.
2713 #    Range roughly -2 to 2.
2714 #    type: float
2715 # mgfractal_julia_y = 0.33
2716
2717 #    Julia set only.
2718 #    Z component of hypercomplex constant.
2719 #    Alters the shape of the fractal.
2720 #    Range roughly -2 to 2.
2721 #    type: float
2722 # mgfractal_julia_z = 0.33
2723
2724 #    Julia set only.
2725 #    W component of hypercomplex constant.
2726 #    Alters the shape of the fractal.
2727 #    Has no effect on 3D fractals.
2728 #    Range roughly -2 to 2.
2729 #    type: float
2730 # mgfractal_julia_w = 0.33
2731
2732 ### Noises
2733
2734 #    Y-level of seabed.
2735 #    type: noise_params_2d
2736 # mgfractal_np_seabed = {
2737 #    offset      = -14,
2738 #    scale       = 9,
2739 #    spread      = (600, 600, 600),
2740 #    seed        = 41900,
2741 #    octaves     = 5,
2742 #    persistence = 0.6,
2743 #    lacunarity  = 2.0,
2744 #    flags       = eased
2745 # }
2746
2747 #    Variation of biome filler depth.
2748 #    type: noise_params_2d
2749 # mgfractal_np_filler_depth = {
2750 #    offset      = 0,
2751 #    scale       = 1.2,
2752 #    spread      = (150, 150, 150),
2753 #    seed        = 261,
2754 #    octaves     = 3,
2755 #    persistence = 0.7,
2756 #    lacunarity  = 2.0,
2757 #    flags       = eased
2758 # }
2759
2760 #    First of two 3D noises that together define tunnels.
2761 #    type: noise_params_3d
2762 # mgfractal_np_cave1 = {
2763 #    offset      = 0,
2764 #    scale       = 12,
2765 #    spread      = (61, 61, 61),
2766 #    seed        = 52534,
2767 #    octaves     = 3,
2768 #    persistence = 0.5,
2769 #    lacunarity  = 2.0,
2770 #    flags       = 
2771 # }
2772
2773 #    Second of two 3D noises that together define tunnels.
2774 #    type: noise_params_3d
2775 # mgfractal_np_cave2 = {
2776 #    offset      = 0,
2777 #    scale       = 12,
2778 #    spread      = (67, 67, 67),
2779 #    seed        = 10325,
2780 #    octaves     = 3,
2781 #    persistence = 0.5,
2782 #    lacunarity  = 2.0,
2783 #    flags       = 
2784 # }
2785
2786 ## Mapgen Valleys
2787
2788 #    Map generation attributes specific to Mapgen Valleys.
2789 #    'altitude_chill': Reduces heat with altitude.
2790 #    'humid_rivers': Increases humidity around rivers and where water pools.
2791 #    'vary_river_depth': If enabled, low humidity and high heat causes rivers
2792 #    to become shallower and occasionally dry.
2793 #    'altitude_dry': Reduces humidity with altitude.
2794 #    type: flags possible values: altitude_chill, noaltitude_chill, humid_rivers, nohumid_rivers, vary_river_depth, novary_river_depth, altitude_dry, noaltitude_dry
2795 # mgvalleys_spflags = altitude_chill,humid_rivers,vary_river_depth,altitude_dry
2796
2797 #    The vertical distance over which heat drops by 20 if 'altitude_chill' is
2798 #    enabled. Also the vertical distance over which humidity drops by 10 if
2799 #    'altitude_dry' is enabled.
2800 #    type: int
2801 # mgvalleys_altitude_chill = 90
2802
2803 #    Depth below which you'll find large caves.
2804 #    type: int
2805 # mgvalleys_large_cave_depth = -33
2806
2807 #    Y of upper limit of lava in large caves.
2808 #    type: int
2809 # mgvalleys_lava_depth = 1
2810
2811 #    Depth below which you'll find giant caverns.
2812 #    type: int
2813 # mgvalleys_cavern_limit = -256
2814
2815 #    Y-distance over which caverns expand to full size.
2816 #    type: int
2817 # mgvalleys_cavern_taper = 192
2818
2819 #    Defines full size of caverns, smaller values create larger caverns.
2820 #    type: float
2821 # mgvalleys_cavern_threshold = 0.6
2822
2823 #    How deep to make rivers.
2824 #    type: int
2825 # mgvalleys_river_depth = 4
2826
2827 #    How wide to make rivers.
2828 #    type: int
2829 # mgvalleys_river_size = 5
2830
2831 #    Controls width of tunnels, a smaller value creates wider tunnels.
2832 #    type: float
2833 # mgvalleys_cave_width = 0.09
2834
2835 #    Lower Y limit of dungeons.
2836 #    type: int
2837 # mgvalleys_dungeon_ymin = -31000
2838
2839 #    Upper Y limit of dungeons.
2840 #    type: int
2841 # mgvalleys_dungeon_ymax = 63
2842
2843 ### Noises
2844
2845 #    First of two 3D noises that together define tunnels.
2846 #    type: noise_params_3d
2847 # mgvalleys_np_cave1 = {
2848 #    offset      = 0,
2849 #    scale       = 12,
2850 #    spread      = (61, 61, 61),
2851 #    seed        = 52534,
2852 #    octaves     = 3,
2853 #    persistence = 0.5,
2854 #    lacunarity  = 2.0,
2855 #    flags       = 
2856 # }
2857
2858 #    Second of two 3D noises that together define tunnels.
2859 #    type: noise_params_3d
2860 # mgvalleys_np_cave2 = {
2861 #    offset      = 0,
2862 #    scale       = 12,
2863 #    spread      = (67, 67, 67),
2864 #    seed        = 10325,
2865 #    octaves     = 3,
2866 #    persistence = 0.5,
2867 #    lacunarity  = 2.0,
2868 #    flags       = 
2869 # }
2870
2871 #    The depth of dirt or other biome filler node.
2872 #    type: noise_params_2d
2873 # mgvalleys_np_filler_depth = {
2874 #    offset      = 0,
2875 #    scale       = 1.2,
2876 #    spread      = (256, 256, 256),
2877 #    seed        = 1605,
2878 #    octaves     = 3,
2879 #    persistence = 0.5,
2880 #    lacunarity  = 2.0,
2881 #    flags       = eased
2882 # }
2883
2884 #    3D noise defining giant caverns.
2885 #    type: noise_params_3d
2886 # mgvalleys_np_cavern = {
2887 #    offset      = 0,
2888 #    scale       = 1,
2889 #    spread      = (768, 256, 768),
2890 #    seed        = 59033,
2891 #    octaves     = 6,
2892 #    persistence = 0.63,
2893 #    lacunarity  = 2.0,
2894 #    flags       = 
2895 # }
2896
2897 #    Defines large-scale river channel structure.
2898 #    type: noise_params_2d
2899 # mgvalleys_np_rivers = {
2900 #    offset      = 0,
2901 #    scale       = 1,
2902 #    spread      = (256, 256, 256),
2903 #    seed        = -6050,
2904 #    octaves     = 5,
2905 #    persistence = 0.6,
2906 #    lacunarity  = 2.0,
2907 #    flags       = eased
2908 # }
2909
2910 #    Base terrain height.
2911 #    type: noise_params_2d
2912 # mgvalleys_np_terrain_height = {
2913 #    offset      = -10,
2914 #    scale       = 50,
2915 #    spread      = (1024, 1024, 1024),
2916 #    seed        = 5202,
2917 #    octaves     = 6,
2918 #    persistence = 0.4,
2919 #    lacunarity  = 2.0,
2920 #    flags       = eased
2921 # }
2922
2923 #    Raises terrain to make valleys around the rivers.
2924 #    type: noise_params_2d
2925 # mgvalleys_np_valley_depth = {
2926 #    offset      = 5,
2927 #    scale       = 4,
2928 #    spread      = (512, 512, 512),
2929 #    seed        = -1914,
2930 #    octaves     = 1,
2931 #    persistence = 1.0,
2932 #    lacunarity  = 2.0,
2933 #    flags       = eased
2934 # }
2935
2936 #    Slope and fill work together to modify the heights.
2937 #    type: noise_params_3d
2938 # mgvalleys_np_inter_valley_fill = {
2939 #    offset      = 0,
2940 #    scale       = 1,
2941 #    spread      = (256, 512, 256),
2942 #    seed        = 1993,
2943 #    octaves     = 6,
2944 #    persistence = 0.8,
2945 #    lacunarity  = 2.0,
2946 #    flags       = 
2947 # }
2948
2949 #    Amplifies the valleys.
2950 #    type: noise_params_2d
2951 # mgvalleys_np_valley_profile = {
2952 #    offset      = 0.6,
2953 #    scale       = 0.5,
2954 #    spread      = (512, 512, 512),
2955 #    seed        = 777,
2956 #    octaves     = 1,
2957 #    persistence = 1.0,
2958 #    lacunarity  = 2.0,
2959 #    flags       = eased
2960 # }
2961
2962 #    Slope and fill work together to modify the heights.
2963 #    type: noise_params_2d
2964 # mgvalleys_np_inter_valley_slope = {
2965 #    offset      = 0.5,
2966 #    scale       = 0.5,
2967 #    spread      = (128, 128, 128),
2968 #    seed        = 746,
2969 #    octaves     = 1,
2970 #    persistence = 1.0,
2971 #    lacunarity  = 2.0,
2972 #    flags       = eased
2973 # }
2974
2975 ## Advanced
2976
2977 #    Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes).
2978 #    WARNING!: There is no benefit, and there are several dangers, in
2979 #    increasing this value above 5.
2980 #    Reducing this value increases cave and dungeon density.
2981 #    Altering this value is for special usage, leaving it unchanged is
2982 #    recommended.
2983 #    type: int
2984 # chunksize = 5
2985
2986 #    Dump the mapgen debug information.
2987 #    type: bool
2988 # enable_mapgen_debug_info = false
2989
2990 #    Maximum number of blocks that can be queued for loading.
2991 #    type: int
2992 # emergequeue_limit_total = 512
2993
2994 #    Maximum number of blocks to be queued that are to be loaded from file.
2995 #    Set to blank for an appropriate amount to be chosen automatically.
2996 #    type: int
2997 # emergequeue_limit_diskonly = 64
2998
2999 #    Maximum number of blocks to be queued that are to be generated.
3000 #    Set to blank for an appropriate amount to be chosen automatically.
3001 #    type: int
3002 # emergequeue_limit_generate = 64
3003
3004 #    Number of emerge threads to use.
3005 #    Make this field blank or 0, or increase this number to use multiple threads.
3006 #    On multiprocessor systems, this will improve mapgen speed greatly at the cost
3007 #    of slightly buggy caves.
3008 #    type: int
3009 # num_emerge_threads = 0
3010
3011 #
3012 # Content Store
3013 #
3014
3015 #    Show packages in the content store that do not qualify as 'free software'
3016 #    as defined by the Free Software Foundation.
3017 #    type: bool
3018 # show_nonfree_packages = false
3019