minetest.conf.example 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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. # Client and server
  22. #
  23. # Name of player; on a server this is the main admin
  24. #name =
  25. #
  26. # Client stuff
  27. #
  28. # Port to connect to (UDP)
  29. #remote_port =
  30. # Key mappings
  31. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  32. #keymap_forward = KEY_KEY_W
  33. #keymap_backward = KEY_KEY_S
  34. #keymap_left = KEY_KEY_A
  35. #keymap_right = KEY_KEY_D
  36. #keymap_jump = KEY_SPACE
  37. #keymap_sneak = KEY_LSHIFT
  38. #keymap_inventory = KEY_KEY_I
  39. # Go down ladder / go down in fly mode / go fast in fast mode
  40. #keymap_special1 = KEY_KEY_E
  41. #keymap_chat = KEY_KEY_T
  42. #keymap_cmd = /
  43. #keyman_console = KEY_F10
  44. #keymap_rangeselect = KEY_KEY_R
  45. #keymap_freemove = KEY_KEY_K
  46. #keymap_fastmove = KEY_KEY_J
  47. #keymap_screenshot = KEY_F12
  48. # If true, keymap_special1 instead of keymap_sneak is used for climbing down and descending
  49. #aux1_descends = false
  50. # Doubletaping the jump key toogles fly mode
  51. #doubletap_jump = false
  52. # If false aux1 is used to fly fast
  53. #always_fly_fast = true
  54. # Some (temporary) keys for debugging
  55. #keymap_print_debug_stacks = KEY_KEY_P
  56. #keymap_quicktune_prev = KEY_HOME
  57. #keymap_quicktune_next = KEY_END
  58. #keymap_quicktune_dec = KEY_NEXT
  59. #keymap_quicktune_inc = KEY_PRIOR
  60. # Minimum FPS
  61. # The amount of rendered stuff is dynamically set according to this
  62. #wanted_fps = 30
  63. # If FPS would go higher than this, limit it by sleeping
  64. # (to not waste CPU power for no benefit)
  65. #fps_max = 60
  66. # Maximum FPS when game is paused
  67. #pause_fps_max = 20
  68. # The allowed adjustment range for the automatic rendering range adjustment
  69. #viewing_range_nodes_max = 160
  70. #viewing_range_nodes_min = 35
  71. # Initial window size
  72. #screenW = 800
  73. #screenH = 600
  74. #fullscreen = false
  75. #fullscreen_bpp = 24
  76. # Experimental option, might cause visible spaces between blocks
  77. # when set to higher number than 0
  78. #fsaa = 0
  79. #vsync = false
  80. #fov = 72
  81. # Address to connect to (#blank = start local server)
  82. #address =
  83. # Enable random user input, for testing
  84. #random_input = false
  85. # Timeout for client to remove unused map data from memory
  86. #client_unload_unused_data_timeout = 600
  87. # Whether to fog out the end of the visible area
  88. #enable_fog = true
  89. # Enable a bit lower water surface; disable for speed (not quite optimized)
  90. #new_style_water = false
  91. # Max liquids processed per step
  92. #liquid_loop_max = 10000
  93. # Update liquids every .. recommend for finite: 0.2
  94. #liquid_update = 1.0
  95. # Enable nice leaves; disable for speed
  96. #new_style_leaves = true
  97. # Enable smooth lighting with simple ambient occlusion;
  98. # disable for speed or for different looks.
  99. #smooth_lighting = true
  100. # Path to texture directory. All textures are first searched from here.
  101. #texture_path =
  102. # Video back-end.
  103. # Possible values: null, software, burningsvideo, direct3d8, direct3d9, opengl
  104. #video_driver = opengl
  105. # Unobstructed movement without physics, downwards key is keymap_special1
  106. #free_move = false
  107. # Continuous forward movement (for testing)
  108. #continuous_forward = false
  109. # Fast movement (keymap_special1)
  110. #fast_move = false
  111. # Invert mouse
  112. #invert_mouse = false
  113. # Enable/disable clouds
  114. #enable_clouds = true
  115. #cloud_height = 120
  116. #enable_3d_clouds = true
  117. # Use a cloud animation for the main menu background
  118. #menu_clouds = true
  119. # Path for screenshots
  120. #screenshot_path = .
  121. # Amount of view bobbing (0 = no view bobbing, 1.0 = normal, 2.0 = double)
  122. #view_bobbing_amount = 1.0
  123. # Amount of fall bobbing (0 = no fall bobbing, 1.0 = normal, 2.0 = double)
  124. #fall_bobbing_amount = 0.0
  125. # 3d support,
  126. # right now:
  127. # "none" = no 3d output,
  128. # "anaglyph" = cyan/magenta color 3d,
  129. # "interlaced" = odd/even line based polarisation screen support,
  130. # "topbottom" = split screen top boton,
  131. # "sidebyside" = split screen side by side
  132. #3d_mode = none
  133. #3d_paralax_strength = 0.025
  134. # In-game chat console background color (R,G,B)
  135. #console_color = (0,0,0)
  136. # In-game chat console background alpha (opaqueness, between 0 and 255)
  137. #console_alpha = 200
  138. # Selection box border color (R,G,B)
  139. #selectionbox_color = (0,0,0)
  140. # Crosshair color (R,G,B)
  141. #crosshair_color = (255,255,255)
  142. # Cross alpha (opaqueness, between 0 and 255)
  143. #crosshair_alpha = 255
  144. # scale gui by a user specified value
  145. #gui_scaling = 1.0
  146. # Sensitivity multiplier
  147. #mouse_sensitivity = 0.2
  148. # Sound settings
  149. #enable_sound = true
  150. #sound_volume = 0.7
  151. # Whether node texture animations should be desynchronized per MapBlock
  152. #desynchronize_mapblock_texture_animation = true
  153. # maximum percentage of current window to be used for hotbar
  154. # (usefull if you've there's something to be displayed right or left of hotbar)
  155. #hud_hotbar_max_width = 1.0
  156. # Texture filtering settings
  157. #mip_map = false
  158. #anisotropic_filter = false
  159. #bilinear_filter = false
  160. #trilinear_filter = false
  161. # Set to true to pre-generate all item visuals
  162. #preload_item_visuals = true
  163. # Set to true to enable shaders. Disable them if video_driver = direct3d9/8.
  164. #enable_shaders = true
  165. # Set to true to enable textures bumpmapping. Requires shaders enabled.
  166. #enable_bumpmapping = false
  167. # Set to true enables parallax occlusion mapping. Requires shaders enabled.
  168. #generate_normalmaps = false
  169. # Set to true enables on the fly normalmap generation (Emboss effect).
  170. # Requires bumpmapping enabled.
  171. #normalmaps_strength = 0.6
  172. # Strength of generated normalmaps
  173. #normalmaps_smooth = 1
  174. # Defines sampling step of texture (0 - 2)
  175. # Higher the value normal maps will be smoother
  176. #enable_parallax_occlusion = false
  177. # Scale of parallax occlusion effect
  178. #parallax_occlusion_scale = 0.08
  179. # Bias of parallax occlusion effect, usually scale/2
  180. #parallax_occlusion_bias = 0.04
  181. # Set to true enables waving water. Requires shaders enabled.
  182. #enable_waving_water = false
  183. # Parameters for waving water:
  184. #water_wave_height = 1.0
  185. #water_wave_length = 20.0
  186. #water_wave_speed = 5.0
  187. # Set to true enables waving leaves. Requires shaders enabled.
  188. #enable_waving_leaves = false
  189. # Set to true enables waving plants. Requires shaders enabled.
  190. #enable_waving_plants = false
  191. # The time in seconds it takes between repeated
  192. # right clicks when holding the right mouse button
  193. #repeat_rightclick_time = 0.25
  194. # Make fog and sky colors depend on daytime (dawn/sunset) and view direction
  195. #directional_colored_fog = true
  196. # Default timeout for cURL, in milliseconds
  197. # Only has an effect if compiled with cURL
  198. #curl_timeout = 5000
  199. # Limits number of parallel HTTP requests. Affects:
  200. # - Media fetch if server uses remote_media setting
  201. # - Serverlist download and server announcement
  202. # - Downloads performed by main menu (e.g. mod manager)
  203. # Only has an effect if compiled with cURL
  204. #curl_parallel_limit = 8
  205. # enable usage of remote media server (if provided by server)
  206. #enable_remote_media_server = true
  207. # Url to the server list displayed in the Multiplayer Tab
  208. #serverlist_url = servers.minetest.net
  209. # File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab
  210. #serverlist_file = favoriteservers.txt
  211. # Whether freetype fonts are used, requires freetype support to be compiled in
  212. #freetype = true
  213. # Path to TrueTypeFont or bitmap
  214. #font_path = fonts/liberationsans.ttf
  215. #font_size = 13
  216. # Font shadow offset, if 0 then shadow will not be drawn.
  217. #font_shadow = 1
  218. # Font shadow alpha (opaqueness, between 0 and 255)
  219. #font_shadow_alpha = 128
  220. #mono_font_path = fonts/liberationmono.ttf
  221. #mono_font_size = 13
  222. # This font will be used for certain languages
  223. #fallback_font_path = fonts/DroidSansFallbackFull.ttf
  224. #fallback_font_size = 13
  225. #fallback_font_shadow = 1
  226. #fallback_font_shadow_alpha = 128
  227. #
  228. # Server stuff
  229. #
  230. # Network port to listen (UDP)
  231. #port = 30000
  232. # Bind address
  233. #bind_address =
  234. # Name of server
  235. #server_name = Minetest server
  236. # Description of server
  237. #server_description = mine here
  238. # Domain name of server
  239. #server_address = game.minetest.net
  240. # Homepage of server
  241. #server_url = http://minetest.net
  242. # Automaticaly report to masterserver
  243. #server_announce = 0
  244. # Announce to this masterserver. if you want to announce your ipv6 address - use serverlist_url = v6.servers.minetest.net
  245. #serverlist_url = servers.minetest.net
  246. # Default game (default when creating a new world)
  247. #default_game = minetest
  248. # World directory (everything in the world is stored here)
  249. #map-dir = /custom/world
  250. # Message of the Day
  251. #motd = Welcome to this awesome Minetest server!
  252. # Maximum number of players connected simultaneously
  253. #max_users = 15
  254. # Set to true to disallow old clients from connecting
  255. #strict_protocol_version_checking = false
  256. # Set to true to enable creative mode (unlimited inventory)
  257. #creative_mode = false
  258. # Enable players getting damage and dying
  259. #enable_damage = false
  260. # Despawn all non-peaceful mobs
  261. #only_peaceful_mobs = false
  262. # A chosen map seed for a new map, leave empty for random
  263. #fixed_map_seed =
  264. # Gives some stuff to players at the beginning
  265. #give_initial_stuff = false
  266. # New users need to input this password
  267. #default_password =
  268. # Available privileges: interact, shout, teleport, settime, privs, ...
  269. # See /privs in game for a full list on your server and mod configuration.
  270. #default_privs = interact, shout
  271. # Whether players are shown to clients without any range limit
  272. #unlimited_player_transfer_distance = true
  273. # Whether to enable players killing each other
  274. #enable_pvp = true
  275. # If this is set, players will always (re)spawn at the given position
  276. #static_spawnpoint = 0, 10, 0
  277. # If true, new players cannot join with an empty password
  278. #disallow_empty_password = false
  279. # If true, disable cheat prevention in multiplayer
  280. #disable_anticheat = false
  281. # If true, actions are recorded for rollback
  282. #enable_rollback_recording = false
  283. # handling for deprecated lua api calls
  284. # "legacy" = (try to) mimic old behaviour (default for release)
  285. # "log" = mimic and log backtrace of deprecated call (default for debug)
  286. # "error" = abort on usage of deprecated call (suggested for mod developers)
  287. #deprecated_lua_api_handling = legacy
  288. # Profiler data print interval. #0 = disable.
  289. #profiler_print_interval = 0
  290. #enable_mapgen_debug_info = false
  291. # from how far client knows about objects
  292. #active_object_send_range_blocks = 3
  293. # how large area of blocks are subject to the active block stuff (active = objects are loaded and ABMs run)
  294. #active_block_range = 2
  295. # how many blocks are flying in the wire simultaneously per client
  296. #max_simultaneous_block_sends_per_client = 10
  297. # how many blocks are flying in the wire simultaneously per server
  298. #max_simultaneous_block_sends_server_total = 40
  299. # From how far blocks are sent to clients (value * 16 nodes)
  300. #max_block_send_distance = 10
  301. # From how far blocks are generated for clients (value * 16 nodes)
  302. #max_block_generate_distance = 6
  303. # Number of extra blocks that can be loaded by /clearobjects at once
  304. # This is a trade-off between sqlite transaction overhead and
  305. # memory consumption (4096=100MB, as a rule of thumb)
  306. #max_clearobjects_extra_loaded_blocks = 4096
  307. # Maximum number of forceloaded blocks
  308. #max_forceloaded_blocks = 16
  309. # Interval of sending time of day to clients
  310. #time_send_interval = 5
  311. # Length of day/night cycle. 72=20min, 360=4min, 1=24hour, 0=day/night/whatever stays unchanged
  312. #time_speed = 72
  313. # Length of year in days for seasons change. With default time_speed 365 days = 5 real days for year. 30 days = 10 real hours
  314. #year_days = 30
  315. #server_unload_unused_data_timeout = 29
  316. # Maximum number of statically stored objects in a block
  317. #max_objects_per_block = 49
  318. # Interval of saving important changes in the world
  319. #server_map_save_interval = 5.3
  320. # http://www.sqlite.org/pragma.html#pragma_synchronous only numeric values: 0 1 2
  321. #sqlite_synchronous = 2
  322. # To reduce lag, block transfers are slowed down when a player is building something.
  323. # This determines how long they are slowed down after placing or removing a node.
  324. #full_block_send_enable_min_time_from_building = 2.0
  325. # Length of a server tick and the interval at which objects are generally updated over network
  326. #dedicated_server_step = 0.1
  327. # Can be set to true to disable shutting down on invalid world data
  328. #ignore_world_load_errors = false
  329. # Congestion control parameters
  330. # time in seconds, rate in ~500B packets
  331. #congestion_control_aim_rtt = 0.2
  332. #congestion_control_max_rate = 400
  333. #congestion_control_min_rate = 10
  334. # Specifies URL from which client fetches media instead of using UDP
  335. # $filename should be accessible from $remote_media$filename via cURL
  336. # (obviously, remote_media should end with a slash)
  337. # Files that are not present would be fetched the usual way
  338. #remote_media =
  339. # Level of logging to be written to debug.txt.
  340. # 0 = none, 1 = errors and debug, 2 = action, 3 = info, 4 = verbose
  341. #debug_log_level = 2
  342. # Maximum number of blocks that can be queued for loading.
  343. #emergequeue_limit_total = 256
  344. # Maximum number of blocks to be queued that are to be loaded from file.
  345. # Set to blank for an appropriate amount to be chosen automatically.
  346. #emergequeue_limit_diskonly = 32
  347. # Maximum number of blocks to be queued that are to be generated.
  348. # Set to blank for an appropriate amount to be chosen automatically.
  349. #emergequeue_limit_generate = 32
  350. # Number of emerge threads to use. Make this field blank, or increase this number, to use multiple threads.
  351. # On multiprocessor systems, this will improve mapgen speed greatly, at the cost of slightly buggy caves.
  352. #num_emerge_threads = 1
  353. # maximum number of packets sent per send step, if you have a slow connection
  354. # try reducing it, but don't reduce it to a number below double of targeted
  355. # client number
  356. #max_packets_per_iteration = 1024
  357. #
  358. # Physics stuff
  359. #
  360. #movement_acceleration_default = 3
  361. #movement_acceleration_air = 2
  362. #movement_acceleration_fast = 10
  363. #movement_speed_walk = 4
  364. #movement_speed_crouch = 1.35
  365. #movement_speed_fast = 20
  366. #movement_speed_climb = 2
  367. #movement_speed_jump = 6.5
  368. #movement_speed_descend = 6
  369. #movement_liquid_fluidity = 1
  370. #movement_liquid_fluidity_smooth = 0.5
  371. #movement_liquid_sink = 10
  372. #movement_gravity = 9.81
  373. #
  374. # Mapgen stuff
  375. #
  376. # Name of map generator to be used. Currently supported: v6, v7, indev, singlenode, math
  377. #mg_name = v6
  378. # Water level of map.
  379. #water_level = 1
  380. # Size of chunks to be generated.
  381. #chunksize = 5
  382. # Map generation attributes. Currently supported: trees, caves, flat, dungeons, light
  383. # Flags that are not specified in the flag string are not modified from the default.
  384. # To explicitly turn off a flag, prepend "no" to the beginning, e.g. nolight.
  385. #mg_flags = trees, caves
  386. # Map generation attributes specific to Mapgen V6. Currently supported: biomeblend, jungles, mudflow
  387. #mgv6_spflags = biomeblend
  388. # How large deserts and beaches are
  389. #mgv6_freq_desert = 0.45
  390. #mgv6_freq_beach = 0.15
  391. # Perlin noise attributes for different map generation parameters
  392. # Offset, scale, spread factor, seed offset, number of octaves, persistence
  393. #mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6
  394. #mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6
  395. #mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7
  396. #mgv6_np_height_select = 0.5, 1, (250, 250, 250), 4213, 5, 0.69
  397. #mgv6_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55
  398. #mgv6_np_beach = 0, 1, (250, 250, 250), 59420, 3, 0.50
  399. #mgv6_np_biome = 0, 1, (250, 250, 250), 9130, 3, 0.50
  400. #mgv6_np_cave = 6, 6, (250, 250, 250), 34329, 3, 0.50
  401. #mgv6_np_humidity = 0.5, 0.5, (500, 500, 500), 72384, 4, 0.66
  402. #mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66
  403. #mgv6_np_apple_trees = 0, 1, (100, 100, 100), 342902, 3, 0.45
  404. #mgv7_spflags = mountains, ridges
  405. #mgv7_np_terrain = 10, 12, (350, 350, 350), 82341, 5, 0.6
  406. #mgv7_np_bgroup = 0.5, 0.3125, (350, 350, 350), 5923, 2, 0.6
  407. #mgv7_np_heat = 25, 50, (500, 500, 500), 35293, 1, 0
  408. #mgv7_np_humidity = 50, 31.25, (750, 750, 750), 12094, 2, 0.6
  409. # Offset, scale, spread factor, seed offset, number of octaves, persistence, farscale, farspread
  410. #mgindev_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 10, 10
  411. #mgindev_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6, 10, 10
  412. #mgindev_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7, 2, 10
  413. #mgindev_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55, 1, 1
  414. #mgindev_np_float_islands1 = 0, 1, (64, 64, 64 ), 3683, 5, 0.5, 1, 1.5
  415. #mgindev_np_float_islands2 = 0, 1, (8, 8, 8 ), 9292, 2, 0.5, 1, 1.5
  416. #mgindev_np_float_islands3 = 0, 1, (256, 256, 256), 6412, 2, 0.5, 1, 0.5
  417. #mgindev_np_biome = 0, 1, (250, 250, 250), 9130, 3, 0.50, 1, 10
  418. # Float islands starts from height, 0 to disable
  419. #mgindev_float_islands = 500
  420. # Math mapgen generator: sphere, mandelbox, mengersponge dont forget to lower water_level = -30000
  421. #mgmath_generator = mandelbox
  422. # Enable/disable IPv6
  423. #enable_ipv6 = true
  424. # Enable/disable running an IPv6 server. An IPv6 server may be restricted
  425. # to IPv6 clients, depending on system configuration.
  426. # Ignored if bind_address is set.
  427. #ipv6_server = false
  428. #main_menu_script =
  429. #main_menu_game_mgr = 0
  430. #main_menu_mod_mgr = 1
  431. #modstore_download_url = https://forum.minetest.net/media/
  432. #modstore_listmods_url = https://forum.minetest.net/mmdb/mods/
  433. #modstore_details_url = https://forum.minetest.net/mmdb/mod/*/
  434. # Makes DirectX work with LuaJIT. Disable if it causes troubles.
  435. #high_precision_fpu = true
  436. # Override language. When no value is provided (default) system language is used.
  437. # Check "locale" directory for the list of available translations.
  438. #language =