2010-11-26 18:02:21 -05:00
|
|
|
# This file is read by default from:
|
|
|
|
# ../minetest.conf
|
|
|
|
# ../../minetest.conf
|
|
|
|
# Any other path can be chosen by passing the path as a parameter
|
2011-05-21 04:44:29 -04:00
|
|
|
# to the program, eg. "minetest.exe --config ../minetest.conf.example"
|
2010-11-29 07:17:46 -05:00
|
|
|
#
|
|
|
|
# By default, all the settings are commented and not functional.
|
|
|
|
# Uncomment settings by removing the preceding #.
|
2011-05-21 04:31:48 -04:00
|
|
|
#
|
|
|
|
# Further documentation:
|
2012-05-20 07:54:02 -04:00
|
|
|
# http://c55.me/minetest/wiki/doku.php
|
2011-06-26 17:27:17 -04:00
|
|
|
#
|
|
|
|
# NOTE: This file might not be up-to-date, refer to the
|
|
|
|
# defaultsettings.cpp file for an up-to-date list:
|
|
|
|
# https://bitbucket.org/celeron55/minetest/src/tip/src/defaultsettings.cpp
|
2011-06-27 01:36:37 -04:00
|
|
|
#
|
|
|
|
# A vim command to convert most of defaultsettings.cpp to conf file format:
|
|
|
|
# :'<,'>s/\tg_settings\.setDefault("\([^"]*\)", "\([^"]*\)");.*/#\1 = \2/g
|
2012-05-20 07:54:02 -04:00
|
|
|
# Note: Some of the settings are implemented in Lua
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2011-02-19 04:48:54 -05:00
|
|
|
#
|
2011-06-27 01:36:37 -04:00
|
|
|
# Client and server
|
2011-02-19 04:48:54 -05:00
|
|
|
#
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2011-06-27 01:36:37 -04:00
|
|
|
# Network port (UDP)
|
|
|
|
#port =
|
|
|
|
# Name of player; on a server this is the main admin
|
2011-05-21 04:31:48 -04:00
|
|
|
#name =
|
|
|
|
|
2011-06-27 01:36:37 -04:00
|
|
|
#
|
|
|
|
# Client stuff
|
|
|
|
#
|
|
|
|
|
|
|
|
# Key mappings
|
2011-05-21 04:31:48 -04:00
|
|
|
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
|
2011-05-14 08:43:26 -04:00
|
|
|
#keymap_forward = KEY_KEY_W
|
|
|
|
#keymap_backward = KEY_KEY_S
|
|
|
|
#keymap_left = KEY_KEY_A
|
|
|
|
#keymap_right = KEY_KEY_D
|
|
|
|
#keymap_jump = KEY_SPACE
|
2011-05-19 15:59:10 -04:00
|
|
|
#keymap_sneak = KEY_LSHIFT
|
2011-05-14 08:43:26 -04:00
|
|
|
#keymap_inventory = KEY_KEY_I
|
2011-10-17 13:04:35 -04:00
|
|
|
# Go down ladder / go down in fly mode / go fast in fast mode
|
|
|
|
#keymap_special1 = KEY_KEY_E
|
2011-05-14 08:43:26 -04:00
|
|
|
#keymap_chat = KEY_KEY_T
|
2011-12-03 03:01:14 -05:00
|
|
|
#keymap_cmd = /
|
|
|
|
#keyman_console = KEY_F10
|
2011-05-14 08:43:26 -04:00
|
|
|
#keymap_rangeselect = KEY_KEY_R
|
2011-06-27 01:36:37 -04:00
|
|
|
#keymap_freemove = KEY_KEY_K
|
|
|
|
#keymap_fastmove = KEY_KEY_J
|
|
|
|
#keymap_screenshot = KEY_F12
|
|
|
|
# Some (temporary) keys for debugging
|
2011-05-14 08:43:26 -04:00
|
|
|
#keymap_print_debug_stacks = KEY_KEY_P
|
|
|
|
|
2011-05-21 04:31:48 -04:00
|
|
|
# The desired FPS
|
2010-11-29 07:17:46 -05:00
|
|
|
#wanted_fps = 30
|
2011-05-21 04:31:48 -04:00
|
|
|
# If FPS would go higher than this, limit it by sleeping
|
|
|
|
# (to not waste CPU power for no benefit)
|
2010-11-29 07:17:46 -05:00
|
|
|
#fps_max = 60
|
2011-05-21 04:31:48 -04:00
|
|
|
# The allowed adjustment range for the automatic rendering range adjustment
|
2012-03-27 11:51:21 -04:00
|
|
|
#viewing_range_nodes_max = 160
|
|
|
|
#viewing_range_nodes_min = 35
|
2011-06-27 01:36:37 -04:00
|
|
|
# Initial window size
|
2011-10-17 13:04:35 -04:00
|
|
|
#screenW = 800
|
|
|
|
#screenH = 600
|
2012-04-03 07:59:02 -04:00
|
|
|
#fullscreen = false
|
|
|
|
#fullscreen_bpp = 24
|
|
|
|
# Experimental option, might cause visible spaces between blocks
|
|
|
|
# when set to higher number than 0
|
|
|
|
#fsaa = 0
|
|
|
|
#vsync = false
|
2011-06-27 01:36:37 -04:00
|
|
|
# Address to connect to (#blank = start local server)
|
|
|
|
#address =
|
|
|
|
# Enable random user input, for testing
|
|
|
|
#random_input = false
|
|
|
|
# Timeout for client to remove unused map data from memory
|
|
|
|
#client_unload_unused_data_timeout = 600
|
2011-05-21 04:31:48 -04:00
|
|
|
# Whether to fog out the end of the visible area
|
2010-12-19 09:51:45 -05:00
|
|
|
#enable_fog = true
|
2011-06-27 01:36:37 -04:00
|
|
|
# Enable a bit lower water surface; disable for speed (not quite optimized)
|
|
|
|
#new_style_water = false
|
2011-02-19 04:48:54 -05:00
|
|
|
# Enable nice leaves; disable for speed
|
2011-02-07 18:12:55 -05:00
|
|
|
#new_style_leaves = true
|
2011-05-21 04:31:48 -04:00
|
|
|
# Enable smooth lighting with simple ambient occlusion;
|
|
|
|
# disable for speed or for different looks.
|
2011-04-24 05:31:19 -04:00
|
|
|
#smooth_lighting = true
|
2011-05-21 04:31:48 -04:00
|
|
|
# Enable combining mainly used textures to a bigger one for improved speed
|
|
|
|
# disable if it causes graphics glitches.
|
2011-02-15 13:53:29 -05:00
|
|
|
#enable_texture_atlas = true
|
2011-05-21 04:31:48 -04:00
|
|
|
# Path to texture directory. All textures are first searched from here.
|
2011-06-27 01:36:37 -04:00
|
|
|
#texture_path =
|
2011-05-21 04:31:48 -04:00
|
|
|
# Video back-end.
|
2011-02-19 04:48:54 -05:00
|
|
|
# Possible values: null, software, burningsvideo, direct3d8, direct3d9, opengl
|
|
|
|
#video_driver = opengl
|
2011-06-27 01:36:37 -04:00
|
|
|
# Unobstructed movement without physics, downwards key is keymap_special1
|
|
|
|
#free_move = false
|
|
|
|
# Continuous forward movement (for testing)
|
|
|
|
#continuous_forward = false
|
|
|
|
# Fast movement (keymap_special1)
|
|
|
|
#fast_move = false
|
|
|
|
# Invert mouse
|
|
|
|
#invert_mouse = false
|
|
|
|
# FarMesh thingy
|
|
|
|
#enable_farmesh = false
|
2011-07-30 18:07:31 -04:00
|
|
|
#farmesh_trees = true
|
|
|
|
#farmesh_distance = 40
|
2011-06-27 01:36:37 -04:00
|
|
|
# Enable/disable clouds
|
|
|
|
#enable_clouds = true
|
|
|
|
# Path for screenshots
|
|
|
|
#screenshot_path = .
|
2011-10-15 09:32:24 -04:00
|
|
|
# Amount of view bobbing (0 = no view bobbing, 1.0 = normal, 2.0 = double)
|
|
|
|
#view_bobbing_amount = 1.0
|
2011-12-03 03:01:14 -05:00
|
|
|
# In-game chat console background color (R,G,B)
|
|
|
|
#console_color = (0,0,0)
|
|
|
|
# In-game chat console background alpha (opaqueness, between 0 and 255)
|
|
|
|
#console_alpha = 200
|
2012-04-06 08:30:36 -04:00
|
|
|
# Sound settings
|
|
|
|
#enable_sound = true
|
|
|
|
#sound_volume = 0.7
|
2011-02-19 04:48:54 -05:00
|
|
|
|
|
|
|
#
|
2011-06-27 01:36:37 -04:00
|
|
|
# Server stuff
|
2011-02-19 04:48:54 -05:00
|
|
|
#
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2012-03-11 14:45:14 -04:00
|
|
|
# Default game (default when creating a new world)
|
2012-03-27 11:51:21 -04:00
|
|
|
#default_game = minetest
|
|
|
|
# World directory (everything in the world is stored here)
|
|
|
|
#map-dir = /custom/world
|
2011-07-30 16:34:16 -04:00
|
|
|
# Message of the Day
|
|
|
|
#motd = Welcome to this awesome Minetest server!
|
2011-10-15 08:02:28 -04:00
|
|
|
# Maximum number of players connected simultaneously
|
2012-03-27 11:51:21 -04:00
|
|
|
#max_users = 100
|
2011-10-15 08:02:28 -04:00
|
|
|
# Set to false to allow old clients to connect
|
|
|
|
#strict_protocol_version_checking = true
|
2010-11-27 10:18:34 -05:00
|
|
|
# Set to true to enable creative mode (unlimited inventory)
|
2010-11-29 07:17:46 -05:00
|
|
|
#creative_mode = false
|
2011-10-15 08:02:28 -04:00
|
|
|
# Enable players getting damage and dying
|
2011-04-21 12:35:17 -04:00
|
|
|
#enable_damage = false
|
2011-10-16 04:52:33 -04:00
|
|
|
# Despawn all non-peaceful mobs
|
|
|
|
#only_peaceful_mobs = false
|
2011-10-15 08:02:28 -04:00
|
|
|
# A chosen map seed for a new map, leave empty for random
|
|
|
|
#fixed_map_seed =
|
2011-06-27 01:36:37 -04:00
|
|
|
# Gives some stuff to players at the beginning
|
|
|
|
#give_initial_stuff = false
|
2011-10-15 08:02:28 -04:00
|
|
|
# New users need to input this password
|
2011-05-29 14:11:16 -04:00
|
|
|
#default_password =
|
|
|
|
# Available privileges: build, teleport, settime, privs, shout
|
|
|
|
#default_privs = build, shout
|
2012-03-27 11:51:21 -04:00
|
|
|
# Whether players are shown to clients without any range limit
|
2011-12-02 04:22:09 -05:00
|
|
|
#unlimited_player_transfer_distance = true
|
2011-12-02 04:25:47 -05:00
|
|
|
# Whether to enable players killing each other
|
|
|
|
#enable_pvp = true
|
2012-05-20 07:54:02 -04:00
|
|
|
# Set static spawnpoint
|
|
|
|
#static_spawnpoint = 0, 10, 0
|
2011-07-30 16:34:16 -04:00
|
|
|
|
2011-06-27 01:36:37 -04:00
|
|
|
# Profiler data print interval. #0 = disable.
|
|
|
|
#profiler_print_interval = 0
|
|
|
|
#enable_mapgen_debug_info = false
|
2012-02-27 07:27:28 -05:00
|
|
|
# from how far client knows about objects
|
2011-10-15 08:02:28 -04:00
|
|
|
#active_object_send_range_blocks = 3
|
2012-02-27 07:27:28 -05:00
|
|
|
# how large area of blocks are subject to the active block stuff (active = objects are loaded and ABMs run)
|
2011-10-17 17:41:17 -04:00
|
|
|
#active_block_range = 2
|
2012-02-27 07:27:28 -05:00
|
|
|
# how many blocks are flying in the wire simultaneously per client
|
2011-06-27 01:36:37 -04:00
|
|
|
#max_simultaneous_block_sends_per_client = 2
|
2012-02-27 07:27:28 -05:00
|
|
|
# how many blocks are flying in the wire simultaneously per server
|
2011-10-20 16:04:09 -04:00
|
|
|
#max_simultaneous_block_sends_server_total = 8
|
2012-05-20 07:54:02 -04:00
|
|
|
# From how far blocks are sent to clients (value * 16 nodes)
|
2012-03-27 11:51:21 -04:00
|
|
|
#max_block_send_distance = 10
|
2012-05-20 07:54:02 -04:00
|
|
|
# From how far blocks are generated for clients (value * 16 nodes)
|
2012-03-27 11:51:21 -04:00
|
|
|
#max_block_generate_distance = 6
|
2012-05-20 07:54:02 -04:00
|
|
|
# Interval of sending time of day to clients
|
2012-03-27 11:51:21 -04:00
|
|
|
#time_send_interval = 5
|
2012-02-27 07:27:28 -05:00
|
|
|
# Length of day/night cycle. 72=20min, 360=4min, 1=24hour, 0=day/night/whatever stays unchanged
|
2012-03-27 11:51:21 -04:00
|
|
|
#time_speed = 96
|
2011-12-01 18:20:54 -05:00
|
|
|
#server_unload_unused_data_timeout = 29
|
2012-05-20 07:54:02 -04:00
|
|
|
# Interval of saving important changes in the world
|
2011-12-01 18:20:54 -05:00
|
|
|
#server_map_save_interval = 5.3
|
2012-03-10 16:54:45 -05:00
|
|
|
# To reduce lag, block transfers are slowed down when a player is building something.
|
|
|
|
# This determines how long they are slowed down after placing or removing a node.
|
2011-06-27 01:36:37 -04:00
|
|
|
#full_block_send_enable_min_time_from_building = 2.0
|
2010-12-20 07:04:31 -05:00
|
|
|
|