]> git.lizzy.rs Git - dragonfireclient.git/blob - minetest.conf.example
Remove automatic consistent formspec size <-> font size (now has to be done manually)
[dragonfireclient.git] / minetest.conf.example
1 #    This file is read by default from:
2 #    ../minetest.conf
3 #    ../../minetest.conf
4 #    Any other path can be chosen by passing the path as a parameter
5 #    to the program, eg. "minetest.exe --config ../minetest.conf.example".
6
7 #    By default, all the settings are commented and not functional.
8 #    Uncomment settings by removing the preceding #.
9
10 #    Further documentation:
11 #    http://wiki.minetest.net/
12
13 #    NOTE: This file might not be up-to-date, refer to the
14 #    defaultsettings.cpp file for an up-to-date list:
15 #    https://github.com/minetest/minetest/blob/master/src/defaultsettings.cpp
16
17 #    A vim command to convert most of defaultsettings.cpp to conf file format:
18 #    :'<,'>s/\tsettings->setDefault("\([^"]*\)", "\([^"]*\)");.*/#\1 = \2/g
19 #    Note: Some of the settings are implemented in Lua.
20
21 #
22 #    Client and server
23 #
24
25 #    Name of player, on a server this is the main admin
26 #name =
27
28 #
29 #    Client stuff
30 #
31
32 #    Port to connect to (UDP)
33 #remote_port =
34 #    Key mappings.
35 #    See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
36 #keymap_forward = KEY_KEY_W
37 #keymap_backward = KEY_KEY_S
38 #keymap_left = KEY_KEY_A
39 #keymap_right = KEY_KEY_D
40 #keymap_jump = KEY_SPACE
41 #keymap_sneak = KEY_LSHIFT
42 #keymap_inventory = KEY_KEY_I
43 #    Go down ladder / go down in fly mode / go fast in fast mode
44 #keymap_special1 = KEY_KEY_E
45 #keymap_chat = KEY_KEY_T
46 #keymap_cmd = /
47 #keyman_console = KEY_F10
48 #keymap_rangeselect = KEY_KEY_R
49 #keymap_freemove = KEY_KEY_K
50 #keymap_fastmove = KEY_KEY_J
51 #keymap_screenshot = KEY_F12
52 #    If true, keymap_special1 instead of keymap_sneak is used for climbing down and descending
53 #aux1_descends = false
54 #    Double-tapping the jump key toggles fly mode
55 #doubletap_jump = false
56 #    If false aux1 is used to fly fast
57 #always_fly_fast = true
58 #    Some (temporary) keys for debugging
59 #keymap_print_debug_stacks = KEY_KEY_P
60 #keymap_quicktune_prev = KEY_HOME
61 #keymap_quicktune_next = KEY_END
62 #keymap_quicktune_dec = KEY_NEXT
63 #keymap_quicktune_inc = KEY_PRIOR
64
65 #    If set to true, you can place blocks at the position (feet + eye level) where you stand.
66 #    This is helpful when working with nodeboxes.
67 #enable_build_where_you_stand = false
68 #    Minimum FPS.
69 #    The amount of rendered stuff is dynamically set according to this.
70 #wanted_fps = 30
71 #    If FPS would go higher than this, limit it by sleeping
72 #    to not waste CPU power for no benefit.
73 #fps_max = 60
74 #    Maximum FPS when game is paused
75 #pause_fps_max = 20
76 #    The allowed adjustment range for the automatic rendering range adjustment
77 #viewing_range_nodes_max = 160
78 #viewing_range_nodes_min = 35
79 #    Initial window size
80 #screenW = 800
81 #screenH = 600
82 #fullscreen = false
83 #fullscreen_bpp = 24
84 #    Experimental option, might cause visible spaces between blocks
85 #    when set to higher number than 0.
86 #fsaa = 0
87 #vsync = false
88 #    Field of view in degrees
89 #fov = 72
90 #    Address to connect to (#blank = start local server)
91 #address =
92 #    Enable random user input, for testing
93 #random_input = false
94 #    Timeout for client to remove unused map data from memory
95 #client_unload_unused_data_timeout = 600
96 #    Whether to fog out the end of the visible area
97 #enable_fog = true
98 #    Whether to show the client debug info (has the same effect as hitting F5)
99 #show_debug = false
100 #    Enable a bit lower water surface; disable for speed (not quite optimized)
101 #new_style_water = false
102 #    Max liquids processed per step
103 #liquid_loop_max = 100000
104 #    The time (in seconds) that the liquids queue may grow beyond processing
105 #    capacity until an attempt is made to decrease its size by dumping old queue
106 #    items.  A value of 0 disables the functionality.
107 #liquid_queue_purge_time = 0
108 #    Liquid update interval in seconds
109 #liquid_update = 1.0
110 #    Enable transparent leaf textures, disable for speed
111 #new_style_leaves = true
112 #    Connects glass if supported by node
113 #connected_glass = false
114 #    Enable smooth lighting with simple ambient occlusion.
115 #    Disable for speed or for different looks.
116 #smooth_lighting = true
117 #    Adjust the gamma encoding for the light tables. Valid values are in the range
118 #    1.1 to 3.0 (inclusive); lower numbers are brighter.  This setting is for the
119 #    client only and is ignored by the server
120 #display_gamma = 1.8
121 # Path to texture directory. All textures are first searched from here.
122 #texture_path =
123 #    Video back-end.
124 #    Possible values: null, software, burningsvideo, direct3d8, direct3d9, opengl.
125 #video_driver = opengl
126 #    Unobstructed movement without physics, downwards key is keymap_special1
127 #free_move = false
128 #    Continuous forward movement (for testing)
129 #continuous_forward = false
130 #    Fast movement (keymap_special1)
131 #fast_move = false
132 #    Invert mouse
133 #invert_mouse = false
134 #    Enable/disable clouds
135 #enable_clouds = true
136 #cloud_height = 120
137 #enable_3d_clouds = true
138 #    Use a cloud animation for the main menu background
139 #menu_clouds = true
140 #    Path for screenshots
141 #screenshot_path =
142 #    Amount of view bobbing (0 = no view bobbing, 1.0 = normal, 2.0 = double)
143 #view_bobbing_amount = 1.0
144 #    Amount of fall bobbing (0 = no fall bobbing, 1.0 = normal, 2.0 = double)
145 #fall_bobbing_amount = 0.0
146 #    3d support.
147 #    Currently:
148 #        "none"       = no 3d output.
149 #        "anaglyph"   = cyan/magenta color 3d.
150 #        "interlaced" = odd/even line based polarisation screen support.
151 #        "topbottom"  = split screen top/bottom.
152 #        "sidebyside" = split screen side by side.
153 #3d_mode = none
154 #3d_parallax_strength = 0.025
155 #    In-game chat console background color (R,G,B)
156 #console_color = (0,0,0)
157 #    In-game chat console background alpha (opaqueness, between 0 and 255)
158 #console_alpha = 200
159 #    Selection box border color (R,G,B)
160 #selectionbox_color = (0,0,0)
161 #    Crosshair color (R,G,B)
162 #crosshair_color = (255,255,255)
163 #    Cross alpha (opaqueness, between 0 and 255)
164 #crosshair_alpha = 255
165 #    Scale gui by a user specified value
166 #gui_scaling = 1.0
167 #    Sensitivity multiplier
168 #mouse_sensitivity = 0.2
169 #    Sound settings
170 #enable_sound = true
171 #sound_volume = 0.7
172 #    Whether node texture animations should be desynchronized per mapblock
173 #desynchronize_mapblock_texture_animation = true
174 #    Width of the selectionbox's lines (Between 1 and 5)
175 #selectionbox_width = 2
176 #    Maximum proportion of current window to be used for hotbar.
177 #    Useful if there's something to be displayed right or left of hotbar.
178 #hud_hotbar_max_width = 1.0
179 #    Save the map received by the client on disk
180 #enable_local_map_saving = false
181 #    Enable selection highlighting for nodes (disables selectionbox)
182 #enable_node_highlighting = false
183 #    Texture filtering settings
184 #mip_map = false
185 #anisotropic_filter = false
186 #bilinear_filter = false
187 #trilinear_filter = false
188 #    Set to true to pre-generate all item visuals
189 #preload_item_visuals = false
190 #    Set to true to enable shaders. Disable them if video_driver = direct3d9/8.
191 #enable_shaders = true
192 #    Set to true to enable textures bumpmapping. Requires shaders enabled.
193 #enable_bumpmapping = false
194 #    Set to true enables parallax occlusion mapping. Requires shaders enabled.
195 #generate_normalmaps = false
196 #    Set to true enables on the fly normalmap generation (Emboss effect).
197 #    Requires bumpmapping enabled.
198 #normalmaps_strength = 0.6
199 #    Strength of generated normalmaps
200 #normalmaps_smooth = 1
201 #    Defines sampling step of texture (0 - 2).
202 #    A higher value results in smoother normal maps.
203 #enable_parallax_occlusion = false
204 #    Scale of parallax occlusion effect
205 #parallax_occlusion_scale = 0.08
206 #    Bias of parallax occlusion effect, usually scale/2
207 #parallax_occlusion_bias = 0.04
208 #    Set to true enables waving water. Requires shaders enabled.
209 #enable_waving_water = false
210 #    Parameters for waving water:
211 #water_wave_height = 1.0
212 #water_wave_length = 20.0
213 #water_wave_speed = 5.0
214 #    Set to true enables waving leaves. Requires shaders enabled.
215 #enable_waving_leaves = false
216 #    Set to true enables waving plants. Requires shaders enabled.
217 #enable_waving_plants = false
218 #    Enables caching of facedir rotated meshes
219 #enable_mesh_cache = true
220 #    The time in seconds it takes between repeated
221 #    right clicks when holding the right mouse button.
222 #repeat_rightclick_time = 0.25
223 #    Make fog and sky colors depend on daytime (dawn/sunset) and view direction
224 #directional_colored_fog = true
225 #    Delay showing tooltips, stated in milliseconds
226 #tooltip_show_delay = 400
227 #    Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k screens
228 #screen_dpi = 72
229 #    Default timeout for cURL, stated in milliseconds.
230 #    Only has an effect if compiled with cURL.
231 #curl_timeout = 5000
232 #    Limits number of parallel HTTP requests. Affects:
233 #        Media fetch if server uses remote_media setting.
234 #        Serverlist download and server announcement.
235 #        Downloads performed by main menu (e.g. mod manager).
236 #    Only has an effect if compiled with cURL.
237 #curl_parallel_limit = 8
238 #    Maximum time in ms a file download (e.g. a mod download) may take
239 #curl_file_download_timeout = 300000
240 #    Enable usage of remote media server (if provided by server)
241 #enable_remote_media_server = true
242 #    Url to the server list displayed in the Multiplayer Tab
243 #serverlist_url = servers.minetest.net
244 #    File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab
245 #serverlist_file = favoriteservers.txt
246 #    Whether freetype fonts are used, requires freetype support to be compiled in
247 #freetype = true
248 #    Path to TrueTypeFont or bitmap
249 #font_path = fonts/liberationsans.ttf
250 #font_size = 13
251 #    Font shadow offset, if 0 then shadow will not be drawn
252 #font_shadow = 1
253 #    Font shadow alpha (opaqueness, between 0 and 255)
254 #font_shadow_alpha = 128
255 #mono_font_path = fonts/liberationmono.ttf
256 #mono_font_size = 13
257 #    This font will be used for certain languages
258 #fallback_font_path = fonts/DroidSansFallbackFull.ttf
259 #fallback_font_size = 13
260 #fallback_font_shadow = 1
261 #fallback_font_shadow_alpha = 128
262 #    Override language. When no value is provided (default) system language is used.
263 #    Check "locale" directory for the list of available translations.
264 #language =
265 #main_menu_script =
266 #main_menu_game_mgr = 0
267 #main_menu_mod_mgr = 1
268 #modstore_download_url = https://forum.minetest.net/media/
269 #modstore_listmods_url = https://forum.minetest.net/mmdb/mods/
270 #modstore_details_url  = https://forum.minetest.net/mmdb/mod/*/
271 #    Makes DirectX work with LuaJIT. Disable if it causes troubles.
272 #high_precision_fpu = true
273
274 #
275 #    Server stuff
276 #
277
278 #    Network port to listen (UDP)
279 #port = 30000
280 #    Bind address
281 #bind_address =
282 #    Name of server
283 #server_name = Minetest server
284 #    Description of server
285 #server_description = mine here
286 #    Domain name of server
287 #server_address = game.minetest.net
288 #    Homepage of server
289 #server_url = http://minetest.net
290 #    Automaticaly report to masterserver
291 #server_announce = 0
292 #    Announce to this masterserver.
293 #    If you want to announce your ipv6 address - use  serverlist_url = v6.servers.minetest.net.
294 #serverlist_url = servers.minetest.net
295 #    Default game (default when creating a new world)
296 #default_game = minetest
297 #    World directory (everything in the world is stored here)
298 #map-dir = /custom/world
299 #    Message of the Day
300 #motd = Welcome to this awesome Minetest server!
301 #    Maximum number of players connected simultaneously
302 #max_users = 15
303 #    Set to true to disallow old clients from connecting
304 #strict_protocol_version_checking = false
305 #    Time in seconds for item entity to live. Default value: 900s.
306 #    Setting it to -1 disables the feature.
307 #item_entity_ttl = 900
308 #    Set to true to enable creative mode (unlimited inventory)
309 #creative_mode = false
310 #    Enable players getting damage and dying
311 #enable_damage = false
312 #    A chosen map seed for a new map, leave empty for random
313 #fixed_map_seed =
314 #    Gives some stuff to players at the beginning
315 #give_initial_stuff = false
316 #    New users need to input this password
317 #default_password =
318 #    Available privileges: interact, shout, teleport, settime, privs, ...
319 #    See /privs in game for a full list on your server and mod configuration.
320 #default_privs = interact, shout
321 #    Whether players are shown to clients without any range limit.
322 #    Deprecated, use the setting player_transfer_distance instead.
323 #unlimited_player_transfer_distance = true
324 #    Defines the maximal player transfer distance in blocks (0 = unlimited)
325 #player_transfer_distance = 0
326 #    Whether to enable players killing each other
327 #enable_pvp = true
328 #    If this is set, players will always (re)spawn at the given position
329 #static_spawnpoint = 0, 10, 0
330 #    If true, new players cannot join with an empty password
331 #disallow_empty_password = false
332 #    If true, disable cheat prevention in multiplayer
333 #disable_anticheat = false
334 #    If true, actions are recorded for rollback
335 #enable_rollback_recording = false
336 #    Handling for deprecated lua api calls:
337 #        "legacy" = (try to) mimic old behaviour (default for release).
338 #        "log"    = mimic and log backtrace of deprecated call (default for debug).
339 #        "error"  = abort on usage of deprecated call (suggested for mod developers).
340 #deprecated_lua_api_handling = legacy
341 #    Mod profiler
342 #mod_profiling = false
343 #    Detailed mod profile data
344 #detailed_profiling = false
345 #    Profiler data print interval. #0 = disable.
346 #profiler_print_interval = 0
347 #enable_mapgen_debug_info = false
348 #    From how far client knows about objects
349 #active_object_send_range_blocks = 3
350 #    How large area of blocks are subject to the active block stuff.
351 #    Active = objects are loaded and ABMs run.
352 #active_block_range = 2
353 #    How many blocks are flying in the wire simultaneously per client
354 #max_simultaneous_block_sends_per_client = 10
355 #    How many blocks are flying in the wire simultaneously per server
356 #max_simultaneous_block_sends_server_total = 40
357 #    From how far blocks are sent to clients, stated in mapblocks (16 nodes)
358 #max_block_send_distance = 10
359 #    From how far blocks are generated for clients, stated in mapblocks (16 nodes)
360 #max_block_generate_distance = 6
361 #    Number of extra blocks that can be loaded by /clearobjects at once.
362 #    This is a trade-off between sqlite transaction overhead and
363 #    memory consumption (4096=100MB, as a rule of thumb).
364 #max_clearobjects_extra_loaded_blocks = 4096
365 #    Maximum number of forceloaded blocks
366 #max_forceloaded_blocks = 16
367 #    Interval of sending time of day to clients
368 #time_send_interval = 5
369 #    Controls length of day/night cycle.
370 #    72=20min, 360=4min, 1=24hour, 0=day/night/whatever stays unchanged.
371 #time_speed = 72
372 #    Length of year in days for seasons change.
373 #    With default time_speed 365 days = 5 real days for year, 30 days = 10 real hours.
374 #year_days = 30
375 #server_unload_unused_data_timeout = 29
376 #    Maximum number of statically stored objects in a block
377 #max_objects_per_block = 49
378 #    Interval of saving important changes in the world, stated in seconds
379 #server_map_save_interval = 5.3
380 #    http://www.sqlite.org/pragma.html#pragma_synchronous only numeric values: 0 1 2
381 #sqlite_synchronous = 2
382 #    To reduce lag, block transfers are slowed down when a player is building something.
383 #    This determines how long they are slowed down after placing or removing a node.
384 #full_block_send_enable_min_time_from_building = 2.0
385 #    Length of a server tick and the interval at which objects are generally updated over network
386 #dedicated_server_step = 0.1
387 #    Can be set to true to disable shutting down on invalid world data
388 #ignore_world_load_errors = false
389 #    Specifies URL from which client fetches media instead of using UDP.
390 #    $filename should be accessible from $remote_media$filename via cURL
391 #    (obviously, remote_media should end with a slash).
392 #    Files that are not present would be fetched the usual way.
393 #remote_media =
394 #    Level of logging to be written to debug.txt:
395 #    0 = none, 1 = errors and debug, 2 = action, 3 = info, 4 = verbose.
396 #debug_log_level = 2
397 #    Maximum number of blocks that can be queued for loading
398 #emergequeue_limit_total = 256
399 #    Maximum number of blocks to be queued that are to be loaded from file.
400 #    Set to blank for an appropriate amount to be chosen automatically.
401 #emergequeue_limit_diskonly = 32
402 #    Maximum number of blocks to be queued that are to be generated.
403 #    Set to blank for an appropriate amount to be chosen automatically.
404 #emergequeue_limit_generate = 32
405 #    Number of emerge threads to use. Make this field blank, or increase this number
406 #    to use multiple threads. On multiprocessor systems, this will improve mapgen speed greatly
407 #    at the cost of slightly buggy caves.
408 #num_emerge_threads = 1
409 #    Maximum number of packets sent per send step, if you have a slow connection
410 #    try reducing it, but don't reduce it to a number below double of targeted
411 #    client number.
412 #max_packets_per_iteration = 1024
413 #    Enable/disable IPv6
414 #enable_ipv6 = true
415 #    Enable/disable running an IPv6 server.  An IPv6 server may be restricted
416 #    to IPv6 clients, depending on system configuration.
417 #    Ignored if bind_address is set.
418 #ipv6_server = false
419
420 #
421 #    Physics stuff
422 #
423
424 #movement_acceleration_default = 3
425 #movement_acceleration_air = 2
426 #movement_acceleration_fast = 10
427 #movement_speed_walk = 4
428 #movement_speed_crouch = 1.35
429 #movement_speed_fast = 20
430 #movement_speed_climb = 2
431 #movement_speed_jump = 6.5
432 #movement_speed_descend = 6
433 #movement_liquid_fluidity = 1
434 #movement_liquid_fluidity_smooth = 0.5
435 #movement_liquid_sink = 10
436 #movement_gravity = 9.81
437
438 #
439 #    Mapgen stuff
440 #
441
442 #    Name of map generator to be used.  Currently supported: v5, v6, v7, singlenode.
443 #mg_name = v6
444 #    Water surface level of map
445 #water_level = 1
446 #    Size of chunks to be generated, stated in mapblocks (16 nodes)
447 #chunksize = 5
448 #    Global map generation attributes.  Currently supported: trees, caves, flat, dungeons, light.
449 #    Flags that are not specified in the flag string are not modified from the default.
450 #    To explicitly turn off a flag, prepend "no" to the beginning, e.g. nolight.
451 #mg_flags = trees, caves
452 #    Map generation attributes specific to Mapgen V6.
453 #    Currently supported: biomeblend, jungles, mudflow.
454 #mgv6_spflags = biomeblend, jungles, mudflow
455 #    Controls size of deserts and beaches in Mapgen V6
456 #mgv6_freq_desert = 0.45
457 #mgv6_freq_beach = 0.15
458
459 #    Perlin noise attributes for different map generation parameters.
460 #    Noise parameters can be specified as a set of positional values:
461 #    Offset, scale, (spread factors), seed offset, number of octaves, persistence, lacunarity.
462 #mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
463 #    Or the new group format can be used instead:
464 #mgv6_np_terrain_base = {
465 #    offset      = -4
466 #    scale       = 20
467 #    spread      = (250, 250, 250)
468 #    seed        = 82341
469 #    octaves     = 5
470 #    persistence = 0.6
471 #    lacunarity  = 2.0
472 #    flags       = "defaults"
473 #}
474 #    Only the group format supports noise flags which are needed for eased noise.
475 #    Mgv5 uses eased noise for np_cave1, np_cave2, np_ground and np_crumble, so these are shown in
476 #    group format, other noise parameters are shown in positional format to save space.
477
478 #mgv5_spflags = blobs
479 #mgv5_np_filler_depth = 0, 1, (150, 150, 150), 261, 4, 0.7, 2.0
480 #mgv5_np_factor = 0, 1, (250, 250, 250), 920381, 3, 0.45, 2.0
481 #mgv5_np_height = 0, 10, (250, 250, 250), 84174, 4, 0.5, 2.0
482 #mgv5_np_cave1 = {
483 #    offset      = 0
484 #    scale       = 6
485 #    spread      = (50, 50, 50)
486 #    seed        = 52534
487 #    octaves     = 4
488 #    persistence = 0.5
489 #    lacunarity  = 2.0
490 #    flags       = "eased"
491 #}
492 #mgv5_np_cave2 = {
493 #    offset      = 0
494 #    scale       = 6
495 #    spread      = (50, 50, 50)
496 #    seed        = 10325
497 #    octaves     = 4
498 #    persistence = 0.5
499 #    lacunarity  = 2.0
500 #    flags       = "eased"
501 #}
502 #mgv5_np_ground = {
503 #    offset      = 0
504 #    scale       = 40
505 #    spread      = (80, 80, 80)
506 #    seed        = 983240
507 #    octaves     = 4
508 #    persistence = 0.55
509 #    lacunarity  = 2.0
510 #    flags       = "eased"
511 #}
512 #mgv5_np_crumble = {
513 #    offset      = 0
514 #    scale       = 1
515 #    spread      = (20, 20, 20)
516 #    seed        = 34413
517 #    octaves     = 3
518 #    persistence = 1.3
519 #    lacunarity  = 2.0
520 #    flags       = "eased"
521 #}
522 #mgv5_np_wetness = 0, 1, (40, 40, 40), 32474, 4, 1.1, 2.0
523
524 #mgv6_spflags = biomeblend, jungles, mudflow
525 #mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
526 #mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6, 2.0
527 #mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7, 2.0
528 #mgv6_np_height_select = 0.5, 1, (250, 250, 250), 4213, 5, 0.69, 2.0
529 #mgv6_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55, 2.0
530 #mgv6_np_beach = 0, 1, (250, 250, 250), 59420, 3, 0.50, 2.0
531 #mgv6_np_biome = 0, 1, (250, 250, 250), 9130, 3, 0.50, 2.0
532 #mgv6_np_cave = 6, 6, (250, 250, 250), 34329, 3, 0.50, 2.0
533 #mgv6_np_humidity = 0.5, 0.5, (500, 500, 500), 72384, 4, 0.66, 2.0
534 #mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66, 2.0
535 #mgv6_np_apple_trees = 0, 1, (100, 100, 100), 342902, 3, 0.45, 2.0
536
537 #mgv7_spflags = mountains, ridges
538 #mgv7_np_terrain_base = 4, 70, (300, 300, 300), 82341, 6, 0.7, 2.0
539 #mgv7_np_terrain_alt = 4, 25, (600, 600, 600), 5934, 5, 0.6, 2.0
540 #mgv7_np_terrain_persist = 0.6, 0.1, (500, 500, 500), 539, 3, 0.6, 2.0
541 #mgv7_np_height_select = -0.5, 1, (250, 250, 250), 4213, 5, 0.69, 2.0
542 #mgv7_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 4, 0.7, 2.0
543 #mgv7_np_mount_height = 100, 30, (500, 500, 500), 72449, 4, 0.6, 2.0
544 #mgv7_np_ridge_uwater = 0, 1, (500, 500, 500), 85039, 4, 0.6, 2.0
545 #mgv7_np_mountain = 0, 1, (250, 350, 250), 5333, 5, 0.68, 2.0
546 #mgv7_np_ridge = 0, 1, (100, 100, 100), 6467, 4, 0.75, 2.0
547
548 #    Noise parameters for biome API temperature and humidity
549 #mg_biome_np_heat = 50, 50, (500, 500, 500), 5349, 3, 0.5, 2.0
550 #mg_biome_np_humidity = 50, 50, (500, 500, 500), 842, 3, 0.5, 2.0
551