diff options
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index 3f3256a04..c36fe05ff 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -158,10 +158,30 @@ # and only for clients compiled with cURL #media_fetch_threads = 8 +# Url to the server list displayed in the Multiplayer Tab +#serverlist_url = servers.minetest.net +# File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab +#serverlist_file = favoriteservers.txt + +#font_path = fonts/liberationsans.ttf +#font_size = 13 +#mono_font_path = fonts/liberationmono.ttf +#mono_font_size = 13 + # # Server stuff # +# Name of server +#server_name = Minetest server +# Description of server +#server_description = mine here +# Domain name of server +#server_address = game.minetest.net +# Homepage of server +#server_url = http://minetest.net +# Automaticaly report to masterserver +#server_announce = 0 # Default game (default when creating a new world) #default_game = minetest # World directory (everything in the world is stored here) @@ -234,4 +254,45 @@ #congestion_control_aim_rtt = 0.2 #congestion_control_max_rate = 400 #congestion_control_min_rate = 10 +# 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 would be fetched the usual way #remote_media = + +# Physics stuff +#movement_acceleration_default = 3 +#movement_acceleration_air = 2 +#movement_acceleration_fast = 10 +#movement_speed_walk = 4 +#movement_speed_crouch = 1.35 +#movement_speed_fast = 20 +#movement_speed_climb = 2 +#movement_speed_jump = 6.5 +#movement_speed_descend = 6 +#movement_liquid_fluidity = 1 +#movement_liquid_fluidity_smooth = 0.5 +#movement_liquid_sink = 10 +#movement_gravity = 9.81 + +# Mapgen stuff +#mg_name = v6 +#water_level = 1 +#chunksize = 5 +#mg_flags = 19 +#mgv6_freq_desert = 0.45 +#mgv6_freq_beach = 0.15 +#mgv6_np_terrain_base = -4, 20, (250.0, 250, 250), 82341, 5, 0.6 +#mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6 +#mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7 +#mgv6_np_height_select = 0.5, 1, (250, 250, 250), 4213, 5, 0.69 +#mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66 +#mgv6_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55 +#mgv6_np_beach = 0, 1, (250, 250, 250), 59420, 3, 0.50 +#mgv6_np_biome = 0, 1, (250, 250, 250), 9130, 3, 0.50 +#mgv6_np_cave = 6, 6, (250, 250, 250), 34329, 3, 0.50 +#mgv7_np_terrain = 10, 12, (350, 350, 350), 82341, 5, 0.6 +#mgv7_np_bgroup = 0.5, 0.3125, (350, 350, 350), 5923, 2, 0.6 +#mgv7_np_heat = 25, 50, (500, 500, 500), 35293, 1, 0 +#mgv7_np_humidity = 50, 31.25, (750, 750, 750), 12094, 2, 0.6 + |