forked from minetest/minetest
-
Notifications
You must be signed in to change notification settings - Fork 10
/
minetest.conf.example
3524 lines (2903 loc) · 105 KB
/
minetest.conf.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file contains a list of all available settings and their default value for minetest.conf
# By default, all the settings are commented and not functional.
# Uncomment settings by removing the preceding #.
# minetest.conf is read by default from:
# ../minetest.conf
# ../../minetest.conf
# Any other path can be chosen by passing the path as a parameter
# to the program, eg. "minetest.exe --config ../minetest.conf.example".
# Further documentation:
# http://wiki.minetest.net/
#
# Controls
#
## General
# If enabled, you can place blocks at the position (feet + eye level) where you stand.
# This is helpful when working with nodeboxes in small areas.
# type: bool
# enable_build_where_you_stand = false
# Smooths camera when looking around. Also called look or mouse smoothing.
# Useful for recording videos.
# type: bool
# cinematic = false
# Smooths rotation of camera. 0 to disable.
# type: float min: 0 max: 0.99
# camera_smoothing = 0.0
# Smooths rotation of camera in cinematic mode. 0 to disable.
# type: float min: 0 max: 0.99
# cinematic_camera_smoothing = 0.7
# If enabled, "Aux1" key instead of "Sneak" key is used for climbing down and
# descending.
# type: bool
# aux1_descends = false
# Double-tapping the jump key toggles fly mode.
# type: bool
# doubletap_jump = false
# If disabled, "Aux1" key is used to fly fast if both fly and fast mode are
# enabled.
# type: bool
# always_fly_fast = true
# The time in seconds it takes between repeated node placements when holding
# the place button.
# type: float min: 0.25 max: 2
# repeat_place_time = 0.25
# Automatically jump up single-node obstacles.
# type: bool
# autojump = false
# Prevent digging and placing from repeating when holding the mouse buttons.
# Enable this when you dig or place too often by accident.
# type: bool
# safe_dig_and_place = false
## Keyboard and Mouse
# Invert vertical mouse movement.
# type: bool
# invert_mouse = false
# Mouse sensitivity multiplier.
# type: float min: 0.001 max: 10
# mouse_sensitivity = 0.2
## Touchscreen
# The length in pixels it takes for touch screen interaction to start.
# type: int min: 0 max: 100
# touchscreen_threshold = 20
# (Android) Fixes the position of virtual joystick.
# If disabled, virtual joystick will center to first-touch's position.
# type: bool
# fixed_virtual_joystick = false
# (Android) Use virtual joystick to trigger "Aux1" button.
# If enabled, virtual joystick will also tap "Aux1" button when out of main circle.
# type: bool
# virtual_joystick_triggers_aux1 = false
#
# Graphics and Audio
#
## Graphics
### Screen
# Width component of the initial window size. Ignored in fullscreen mode.
# type: int min: 1 max: 65535
# screen_w = 1024
# Height component of the initial window size. Ignored in fullscreen mode.
# type: int min: 1 max: 65535
# screen_h = 600
# Save window size automatically when modified.
# type: bool
# autosave_screensize = true
# Fullscreen mode.
# type: bool
# fullscreen = false
# Open the pause menu when the window's focus is lost. Does not pause if a formspec is
# open.
# type: bool
# pause_on_lost_focus = false
### FPS
# If FPS would go higher than this, limit it by sleeping
# to not waste CPU power for no benefit.
# type: int min: 1 max: 4294967295
# fps_max = 60
# Vertical screen synchronization.
# type: bool
# vsync = false
# Maximum FPS when the window is not focused, or when the game is paused.
# type: int min: 1 max: 4294967295
# fps_max_unfocused = 20
# View distance in nodes.
# type: int min: 20 max: 4000
# viewing_range = 190
# Undersampling is similar to using a lower screen resolution, but it applies
# to the game world only, keeping the GUI intact.
# It should give a significant performance boost at the cost of less detailed image.
# Higher values result in a less detailed image.
# type: int min: 1 max: 8
# undersampling = 1
### Graphics Effects
# Makes all liquids opaque
# type: bool
# opaque_water = false
# Leaves style:
# - Fancy: all faces visible
# - Simple: only outer faces, if defined special_tiles are used
# - Opaque: disable transparency
# type: enum values: fancy, simple, opaque
# leaves_style = fancy
# Connects glass if supported by node.
# type: bool
# connected_glass = false
# Enable smooth lighting with simple ambient occlusion.
# Disable for speed or for different looks.
# type: bool
# smooth_lighting = true
# Enables tradeoffs that reduce CPU load or increase rendering performance
# at the expense of minor visual glitches that do not impact game playability.
# type: bool
# performance_tradeoffs = false
# Adds particles when digging a node.
# type: bool
# enable_particles = true
### 3d
# 3D support.
# Currently supported:
# - none: no 3d output.
# - anaglyph: cyan/magenta color 3d.
# - interlaced: odd/even line based polarisation screen support.
# - topbottom: split screen top/bottom.
# - sidebyside: split screen side by side.
# - crossview: Cross-eyed 3d
# - pageflip: quadbuffer based 3d.
# Note that the interlaced mode requires shaders to be enabled.
# type: enum values: none, anaglyph, interlaced, topbottom, sidebyside, crossview, pageflip
# 3d_mode = none
# Strength of 3D mode parallax.
# type: float min: -0.087 max: 0.087
# 3d_paralax_strength = 0.025
### Bobbing
# Arm inertia, gives a more realistic movement of
# the arm when the camera moves.
# type: bool
# arm_inertia = true
# Enable view bobbing and amount of view bobbing.
# For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
# type: float min: 0 max: 7.9
# view_bobbing_amount = 1.0
# Multiplier for fall bobbing.
# For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
# type: float min: 0 max: 100
# fall_bobbing_amount = 0.03
### Camera
# Camera 'near clipping plane' distance in nodes, between 0 and 0.25
# Only works on GLES platforms. Most users will not need to change this.
# Increasing can reduce artifacting on weaker GPUs.
# 0.1 = Default, 0.25 = Good value for weaker tablets.
# type: float min: 0 max: 0.25
# near_plane = 0.1
# Field of view in degrees.
# type: int min: 45 max: 160
# fov = 72
# Alters the light curve by applying 'gamma correction' to it.
# Higher values make middle and lower light levels brighter.
# Value '1.0' leaves the light curve unaltered.
# This only has significant effect on daylight and artificial
# light, it has very little effect on natural night light.
# type: float min: 0.33 max: 3
# display_gamma = 1.0
# The strength (darkness) of node ambient-occlusion shading.
# Lower is darker, Higher is lighter. The valid range of values for this
# setting is 0.25 to 4.0 inclusive. If the value is out of range it will be
# set to the nearest valid value.
# type: float min: 0.25 max: 4
# ambient_occlusion_gamma = 2.2
### Screenshots
# Path to save screenshots at. Can be an absolute or relative path.
# The folder will be created if it doesn't already exist.
# type: path
# screenshot_path = screenshots
# Format of screenshots.
# type: enum values: png, jpg
# screenshot_format = png
# Screenshot quality. Only used for JPEG format.
# 1 means worst quality; 100 means best quality.
# Use 0 for default quality.
# type: int min: 0 max: 100
# screenshot_quality = 0
### Node and Entity Highlighting
# Method used to highlight selected object.
# type: enum values: box, halo, none
# node_highlighting = box
# Show entity selection boxes
# A restart is required after changing this.
# type: bool
# show_entity_selectionbox = false
# Selection box border color (R,G,B).
# type: string
# selectionbox_color = (0,0,0)
# Width of the selection box lines around nodes.
# type: int min: 1 max: 5
# selectionbox_width = 2
# Crosshair color (R,G,B).
# Also controls the object crosshair color
# type: string
# crosshair_color = (255,255,255)
# Crosshair alpha (opaqueness, between 0 and 255).
# This also applies to the object crosshair.
# type: int min: 0 max: 255
# crosshair_alpha = 255
### Fog
# Whether to fog out the end of the visible area.
# type: bool
# enable_fog = true
# Make fog and sky colors depend on daytime (dawn/sunset) and view direction.
# type: bool
# directional_colored_fog = true
# Fraction of the visible distance at which fog starts to be rendered
# type: float min: 0 max: 0.99
# fog_start = 0.4
### Clouds
# Clouds are a client side effect.
# type: bool
# enable_clouds = true
# Use 3D cloud look instead of flat.
# type: bool
# enable_3d_clouds = true
### Filtering and Antialiasing
# Use mipmapping to scale textures. May slightly increase performance,
# especially when using a high resolution texture pack.
# Gamma correct downscaling is not supported.
# type: bool
# mip_map = false
# Use anisotropic filtering when viewing at textures from an angle.
# type: bool
# anisotropic_filter = false
# Use bilinear filtering when scaling textures.
# type: bool
# bilinear_filter = false
# Use trilinear filtering when scaling textures.
# type: bool
# trilinear_filter = false
# Filtered textures can blend RGB values with fully-transparent neighbors,
# which PNG optimizers usually discard, often resulting in dark or
# light edges to transparent textures. Apply a filter to clean that up
# at texture load time. This is automatically enabled if mipmapping is enabled.
# type: bool
# texture_clean_transparent = false
# When using bilinear/trilinear/anisotropic filters, low-resolution textures
# can be blurred, so automatically upscale them with nearest-neighbor
# interpolation to preserve crisp pixels. This sets the minimum texture size
# for the upscaled textures; higher values look sharper, but require more
# memory. Powers of 2 are recommended. This setting is ONLY applied if
# bilinear/trilinear/anisotropic filtering is enabled.
# This is also used as the base node texture size for world-aligned
# texture autoscaling.
# type: int min: 1 max: 32768
# texture_min_size = 64
# Use multi-sample antialiasing (MSAA) to smooth out block edges.
# This algorithm smooths out the 3D viewport while keeping the image sharp,
# but it doesn't affect the insides of textures
# (which is especially noticeable with transparent textures).
# Visible spaces appear between nodes when shaders are disabled.
# If set to 0, MSAA is disabled.
# A restart is required after changing this option.
# type: enum values: 0, 1, 2, 4, 8, 16
# fsaa = 0
## Shaders
# Shaders allow advanced visual effects and may increase performance on some video
# cards.
# This only works with the OpenGL video backend.
# type: bool
# enable_shaders = true
### Tone Mapping
# Enables Hable's 'Uncharted 2' filmic tone mapping.
# Simulates the tone curve of photographic film and how this approximates the
# appearance of high dynamic range images. Mid-range contrast is slightly
# enhanced, highlights and shadows are gradually compressed.
# type: bool
# tone_mapping = false
### Waving Nodes
# Set to true to enable waving leaves.
# Requires shaders to be enabled.
# type: bool
# enable_waving_leaves = false
# Set to true to enable waving plants.
# Requires shaders to be enabled.
# type: bool
# enable_waving_plants = false
# Set to true to enable waving liquids (like water).
# Requires shaders to be enabled.
# type: bool
# enable_waving_water = false
# The maximum height of the surface of waving liquids.
# 4.0 = Wave height is two nodes.
# 0.0 = Wave doesn't move at all.
# Default is 1.0 (1/2 node).
# Requires waving liquids to be enabled.
# type: float min: 0 max: 4
# water_wave_height = 1.0
# Length of liquid waves.
# Requires waving liquids to be enabled.
# type: float min: 0.1
# water_wave_length = 20.0
# How fast liquid waves will move. Higher = faster.
# If negative, liquid waves will move backwards.
# Requires waving liquids to be enabled.
# type: float
# water_wave_speed = 5.0
### Dynamic shadows
# Set to true to enable Shadow Mapping.
# Requires shaders to be enabled.
# type: bool
# enable_dynamic_shadows = false
# Set the shadow strength gamma.
# Adjusts the intensity of in-game dynamic shadows.
# Lower value means lighter shadows, higher value means darker shadows.
# type: float min: 0.1 max: 10
# shadow_strength_gamma = 1.0
# Maximum distance to render shadows.
# type: float min: 10 max: 1000
# shadow_map_max_distance = 120.0
# Texture size to render the shadow map on.
# This must be a power of two.
# Bigger numbers create better shadows but it is also more expensive.
# type: int min: 128 max: 8192
# shadow_map_texture_size = 1024
# Sets shadow texture quality to 32 bits.
# On false, 16 bits texture will be used.
# This can cause much more artifacts in the shadow.
# type: bool
# shadow_map_texture_32bit = true
# Enable Poisson disk filtering.
# On true uses Poisson disk to make "soft shadows". Otherwise uses PCF filtering.
# type: bool
# shadow_poisson_filter = true
# Define shadow filtering quality.
# This simulates the soft shadows effect by applying a PCF or Poisson disk
# but also uses more resources.
# type: enum values: 0, 1, 2
# shadow_filters = 1
# Enable colored shadows.
# On true translucent nodes cast colored shadows. This is expensive.
# type: bool
# shadow_map_color = false
# Spread a complete update of shadow map over given amount of frames.
# Higher values might make shadows laggy, lower values
# will consume more resources.
# Minimum value: 1; maximum value: 16
# type: int min: 1 max: 16
# shadow_update_frames = 8
# Set the soft shadow radius size.
# Lower values mean sharper shadows, bigger values mean softer shadows.
# Minimum value: 1.0; maximum value: 15.0
# type: float min: 1 max: 15
# shadow_soft_radius = 5.0
# Set the tilt of Sun/Moon orbit in degrees.
# Value of 0 means no tilt / vertical orbit.
# Minimum value: 0.0; maximum value: 60.0
# type: float min: 0 max: 60
# shadow_sky_body_orbit_tilt = 0.0
## Audio
# Volume of all sounds.
# Requires the sound system to be enabled.
# type: float min: 0 max: 1
# sound_volume = 0.7
# Whether to mute sounds. You can unmute sounds at any time, unless the
# sound system is disabled (enable_sound=false).
# In-game, you can toggle the mute state with the mute key or by using the
# pause menu.
# type: bool
# mute_sound = false
## User Interfaces
# Set the language. Leave empty to use the system language.
# A restart is required after changing this.
# type: enum values: , be, bg, ca, cs, da, de, el, en, eo, es, et, eu, fi, fr, gd, gl, hu, id, it, ja, jbo, kk, ko, lt, lv, ms, nb, nl, nn, pl, pt, pt_BR, ro, ru, sk, sl, sr_Cyrl, sr_Latn, sv, sw, tr, uk, vi, zh_CN, zh_TW
# language =
### GUIs
# Scale GUI by a user specified value.
# Use a nearest-neighbor-anti-alias filter to scale the GUI.
# This will smooth over some of the rough edges, and blend
# pixels when scaling down, at the cost of blurring some
# edge pixels when images are scaled by non-integer sizes.
# type: float min: 0.5 max: 20
# gui_scaling = 1.0
# Enables animation of inventory items.
# type: bool
# inventory_items_animations = false
# Formspec full-screen background opacity (between 0 and 255).
# type: int min: 0 max: 255
# formspec_fullscreen_bg_opacity = 140
# Formspec full-screen background color (R,G,B).
# type: string
# formspec_fullscreen_bg_color = (0,0,0)
# When gui_scaling_filter is true, all GUI images need to be
# filtered in software, but some images are generated directly
# to hardware (e.g. render-to-texture for nodes in inventory).
# type: bool
# gui_scaling_filter = false
# When gui_scaling_filter_txr2img is true, copy those images
# from hardware to software for scaling. When false, fall back
# to the old scaling method, for video drivers that don't
# properly support downloading textures back from hardware.
# type: bool
# gui_scaling_filter_txr2img = true
# Delay showing tooltips, stated in milliseconds.
# type: int min: 0 max: 1.844674407371e+19
# tooltip_show_delay = 400
# Append item name to tooltip.
# type: bool
# tooltip_append_itemname = false
# Use a cloud animation for the main menu background.
# type: bool
# menu_clouds = true
### HUD
# Modifies the size of the HUD elements.
# type: float min: 0.5 max: 20
# hud_scaling = 1.0
# Whether name tag backgrounds should be shown by default.
# Mods may still set a background.
# type: bool
# show_nametag_backgrounds = true
### Chat
# Maximum number of recent chat messages to show
# type: int min: 2 max: 20
# recent_chat_messages = 6
# In-game chat console height, between 0.1 (10%) and 1.0 (100%).
# type: float min: 0.1 max: 1
# console_height = 0.6
# In-game chat console background color (R,G,B).
# type: string
# console_color = (0,0,0)
# In-game chat console background alpha (opaqueness, between 0 and 255).
# type: int min: 0 max: 255
# console_alpha = 200
# Maximum proportion of current window to be used for hotbar.
# Useful if there's something to be displayed right or left of hotbar.
# type: float min: 0.001 max: 1
# hud_hotbar_max_width = 1.0
# Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console output.
# type: bool
# clickable_chat_weblinks = true
# Optional override for chat weblink color.
# type: string
# chat_weblink_color =
# Font size of the recent chat text and chat prompt in point (pt).
# Value 0 will use the default font size.
# type: int min: 0 max: 72
# chat_font_size = 0
### Content Repository
# The URL for the content repository
# type: string
# contentdb_url = https://content.minetest.net
# Comma-separated list of flags to hide in the content repository.
# "nonfree" can be used to hide packages which do not qualify as 'free software',
# as defined by the Free Software Foundation.
# You can also specify content ratings.
# These flags are independent from Minetest versions,
# so see a full list at https://content.minetest.net/help/content_flags/
# type: string
# contentdb_flag_blacklist = nonfree, desktop_default
# Maximum number of concurrent downloads. Downloads exceeding this limit will be queued.
# This should be lower than curl_parallel_limit.
# type: int min: 1
# contentdb_max_concurrent_downloads = 3
#
# Client and Server
#
## Client
# Save the map received by the client on disk.
# type: bool
# enable_local_map_saving = false
# URL to the server list displayed in the Multiplayer Tab.
# type: string
# serverlist_url = servers.minetest.net
# If enabled, account registration is separate from login in the UI.
# If disabled, new accounts will be registered automatically when logging in.
# type: bool
# enable_split_login_register = true
## Server
# Name of the player.
# When running a server, clients connecting with this name are admins.
# When starting from the main menu, this is overridden.
# type: string
# name =
### Serverlist and MOTD
# Name of the server, to be displayed when players join and in the serverlist.
# type: string
# server_name = Minetest server
# Description of server, to be displayed when players join and in the serverlist.
# type: string
# server_description = mine here
# Domain name of server, to be displayed in the serverlist.
# type: string
# server_address = game.minetest.net
# Homepage of server, to be displayed in the serverlist.
# type: string
# server_url = https://minetest.net
# Automatically report to the serverlist.
# type: bool
# server_announce = false
# Announce to this serverlist.
# type: string
# serverlist_url = servers.minetest.net
# Message of the day displayed to players connecting.
# type: string
# motd =
# Maximum number of players that can be connected simultaneously.
# type: int min: 0 max: 65535
# max_users = 15
# If this is set, players will always (re)spawn at the given position.
# type: string
# static_spawnpoint =
### Networking
# Network port to listen (UDP).
# This value will be overridden when starting from the main menu.
# type: int min: 1 max: 65535
# port = 30000
# The network interface that the server listens on.
# type: string
# bind_address =
# Enable to disallow old clients from connecting.
# Older clients are compatible in the sense that they will not crash when connecting
# to new servers, but they may not support all new features that you are expecting.
# type: bool
# strict_protocol_version_checking = false
# Specifies URL from which client fetches media instead of using UDP.
# $filename should be accessible from $remote_media$filename via cURL
# (obviously, remote_media should end with a slash).
# Files that are not present will be fetched the usual way.
# type: string
# remote_media =
# Enable/disable running an IPv6 server.
# Ignored if bind_address is set.
# Needs enable_ipv6 to be enabled.
# type: bool
# ipv6_server = false
## Server Security
# New users need to input this password.
# type: string
# default_password =
# If enabled, players cannot join without a password or change theirs to an empty password.
# type: bool
# disallow_empty_password = false
# The privileges that new users automatically get.
# See /privs in game for a full list on your server and mod configuration.
# type: string
# default_privs = interact, shout
# Privileges that players with basic_privs can grant
# type: string
# basic_privs = interact, shout
# If enabled, disable cheat prevention in multiplayer.
# type: bool
# disable_anticheat = false
# If enabled, actions are recorded for rollback.
# This option is only read when server starts.
# type: bool
# enable_rollback_recording = false
### Client-side Modding
# Restricts the access of certain client-side functions on servers.
# Combine the byteflags below to restrict client-side features, or set to 0
# for no restrictions:
# LOAD_CLIENT_MODS: 1 (disable loading client-provided mods)
# CHAT_MESSAGES: 2 (disable send_chat_message call client-side)
# READ_ITEMDEFS: 4 (disable get_item_def call client-side)
# READ_NODEDEFS: 8 (disable get_node_def call client-side)
# LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to
# csm_restriction_noderange)
# READ_PLAYERINFO: 32 (disable get_player_names call client-side)
# type: int min: 0 max: 63
# csm_restriction_flags = 62
# If the CSM restriction for node range is enabled, get_node calls are limited
# to this distance from the player to the node.
# type: int min: 0 max: 4294967295
# csm_restriction_noderange = 0
### Chat
# Remove color codes from incoming chat messages
# Use this to stop players from being able to use color in their messages
# type: bool
# strip_color_codes = false
# Set the maximum length of a chat message (in characters) sent by clients.
# type: int min: 10 max: 65535
# chat_message_max_size = 500
# Amount of messages a player may send per 10 seconds.
# type: float min: 1
# chat_message_limit_per_10sec = 10.0
# Kick players who sent more than X messages per 10 seconds.
# type: int min: 1 max: 65535
# chat_message_limit_trigger_kick = 50
## Server Gameplay
# Controls length of day/night cycle.
# Examples:
# 72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged.
# type: int min: 0
# time_speed = 72
# Time of day when a new world is started, in millihours (0-23999).
# type: int min: 0 max: 23999
# world_start_time = 6125
# Time in seconds for item entity (dropped items) to live.
# Setting it to -1 disables the feature.
# type: int min: -1
# item_entity_ttl = 900
# Specifies the default stack size of nodes, items and tools.
# Note that mods or games may explicitly set a stack for certain (or all) items.
# type: int min: 1 max: 65535
# default_stack_max = 99
### Physics
# Horizontal and vertical acceleration on ground or when climbing,
# in nodes per second per second.
# type: float min: 0
# movement_acceleration_default = 3.0
# Horizontal acceleration in air when jumping or falling,
# in nodes per second per second.
# type: float min: 0
# movement_acceleration_air = 2.0
# Horizontal and vertical acceleration in fast mode,
# in nodes per second per second.
# type: float min: 0
# movement_acceleration_fast = 10.0
# Walking and flying speed, in nodes per second.
# type: float min: 0
# movement_speed_walk = 4.0
# Sneaking speed, in nodes per second.
# type: float min: 0
# movement_speed_crouch = 1.35
# Walking, flying and climbing speed in fast mode, in nodes per second.
# type: float min: 0
# movement_speed_fast = 20.0
# Vertical climbing speed, in nodes per second.
# type: float min: 0
# movement_speed_climb = 3.0
# Initial vertical speed when jumping, in nodes per second.
# type: float min: 0
# movement_speed_jump = 6.5
# How much you are slowed down when moving inside a liquid.
# Decrease this to increase liquid resistance to movement.
# type: float min: 0.001
# movement_liquid_fluidity = 1.0
# Maximum liquid resistance. Controls deceleration when entering liquid at
# high speed.
# type: float
# movement_liquid_fluidity_smooth = 0.5
# Controls sinking speed in liquid when idling. Negative values will cause
# you to rise instead.
# type: float
# movement_liquid_sink = 10.0
# Acceleration of gravity, in nodes per second per second.
# type: float
# movement_gravity = 9.81
#
# Mapgen
#
# A chosen map seed for a new map, leave empty for random.
# Will be overridden when creating a new world in the main menu.
# type: string
# fixed_map_seed =
# Name of map generator to be used when creating a new world.
# Creating a world in the main menu will override this.
# Current mapgens in a highly unstable state:
# - The optional floatlands of v7 (disabled by default).
# type: enum values: v7, valleys, carpathian, v5, flat, fractal, singlenode, v6
# mg_name = v7
# Water surface level of the world.
# type: int min: -31000 max: 31000
# water_level = 1
# From how far blocks are generated for clients, stated in mapblocks (16 nodes).
# type: int min: 1 max: 32767
# max_block_generate_distance = 10
# Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).
# Only mapchunks completely within the mapgen limit are generated.
# Value is stored per-world.
# type: int min: 0 max: 31007
# mapgen_limit = 31007
# Global map generation attributes.
# In Mapgen v6 the 'decorations' flag controls all decorations except trees
# and jungle grass, in all other mapgens this flag controls all decorations.
# type: flags possible values: caves, dungeons, light, decorations, biomes, ores, nocaves, nodungeons, nolight, nodecorations, nobiomes, noores
# mg_flags = caves,dungeons,light,decorations,biomes,ores
## Biome API noise parameters
# Temperature variation for biomes.
# type: noise_params_2d
# mg_biome_np_heat = {
# offset = 50,
# scale = 50,
# spread = (1000, 1000, 1000),
# seed = 5349,
# octaves = 3,
# persistence = 0.5,
# lacunarity = 2.0,
# flags = eased
# }
# Small-scale temperature variation for blending biomes on borders.
# type: noise_params_2d
# mg_biome_np_heat_blend = {
# offset = 0,
# scale = 1.5,
# spread = (8, 8, 8),
# seed = 13,
# octaves = 2,
# persistence = 1.0,
# lacunarity = 2.0,
# flags = eased
# }
# Humidity variation for biomes.
# type: noise_params_2d
# mg_biome_np_humidity = {
# offset = 50,
# scale = 50,
# spread = (1000, 1000, 1000),
# seed = 842,
# octaves = 3,
# persistence = 0.5,
# lacunarity = 2.0,
# flags = eased
# }
# Small-scale humidity variation for blending biomes on borders.
# type: noise_params_2d
# mg_biome_np_humidity_blend = {
# offset = 0,
# scale = 1.5,
# spread = (8, 8, 8),
# seed = 90003,
# octaves = 2,
# persistence = 1.0,
# lacunarity = 2.0,
# flags = eased
# }
## Mapgen V5
# Map generation attributes specific to Mapgen v5.
# type: flags possible values: caverns, nocaverns
# mgv5_spflags = caverns
# Controls width of tunnels, a smaller value creates wider tunnels.
# Value >= 10.0 completely disables generation of tunnels and avoids the
# intensive noise calculations.
# type: float
# mgv5_cave_width = 0.09
# Y of upper limit of large caves.
# type: int min: -31000 max: 31000
# mgv5_large_cave_depth = -256
# Minimum limit of random number of small caves per mapchunk.
# type: int min: 0 max: 256
# mgv5_small_cave_num_min = 0
# Maximum limit of random number of small caves per mapchunk.
# type: int min: 0 max: 256
# mgv5_small_cave_num_max = 0
# Minimum limit of random number of large caves per mapchunk.
# type: int min: 0 max: 64
# mgv5_large_cave_num_min = 0
# Maximum limit of random number of large caves per mapchunk.
# type: int min: 0 max: 64
# mgv5_large_cave_num_max = 2
# Proportion of large caves that contain liquid.
# type: float min: 0 max: 1
# mgv5_large_cave_flooded = 0.5
# Y-level of cavern upper limit.
# type: int min: -31000 max: 31000
# mgv5_cavern_limit = -256
# Y-distance over which caverns expand to full size.
# type: int min: 0 max: 32767
# mgv5_cavern_taper = 256
# Defines full size of caverns, smaller values create larger caverns.
# type: float
# mgv5_cavern_threshold = 0.7
# Lower Y limit of dungeons.
# type: int min: -31000 max: 31000
# mgv5_dungeon_ymin = -31000
# Upper Y limit of dungeons.
# type: int min: -31000 max: 31000
# mgv5_dungeon_ymax = 31000
### Noises