minetest.conf.example 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115
  1. # This file contains a list of all available settings and their default value for minetest.conf
  2. # By default, all the settings are commented and not functional.
  3. # Uncomment settings by removing the preceding #.
  4. # minetest.conf is read by default from:
  5. # ../minetest.conf
  6. # ../../minetest.conf
  7. # Any other path can be chosen by passing the path as a parameter
  8. # to the program, eg. "minetest.exe --config ../minetest.conf.example".
  9. # Further documentation:
  10. # http://wiki.minetest.net/
  11. #
  12. # Client
  13. #
  14. ## Controls
  15. # If enabled, you can place blocks at the position (feet + eye level) where you stand.
  16. # This is helpful when working with nodeboxes in small areas.
  17. # type: bool
  18. # enable_build_where_you_stand = false
  19. # Player is able to fly without being affected by gravity.
  20. # This requires the "fly" privilege on the server.
  21. # type: bool
  22. # free_move = false
  23. # Fast movement (via the "special" key).
  24. # This requires the "fast" privilege on the server.
  25. # type: bool
  26. # fast_move = false
  27. # If enabled together with fly mode, player is able to fly through solid nodes.
  28. # This requires the "noclip" privilege on the server.
  29. # type: bool
  30. # noclip = false
  31. # Smooths camera when looking around. Also called look or mouse smoothing.
  32. # Useful for recording videos.
  33. # type: bool
  34. # cinematic = false
  35. # Smooths rotation of camera. 0 to disable.
  36. # type: float min: 0 max: 0.99
  37. # camera_smoothing = 0.0
  38. # Smooths rotation of camera in cinematic mode. 0 to disable.
  39. # type: float min: 0 max: 0.99
  40. # cinematic_camera_smoothing = 0.7
  41. # Invert vertical mouse movement.
  42. # type: bool
  43. # invert_mouse = false
  44. # Mouse sensitivity multiplier.
  45. # type: float
  46. # mouse_sensitivity = 0.2
  47. # If enabled, "special" key instead of "sneak" key is used for climbing down and descending.
  48. # type: bool
  49. # aux1_descends = false
  50. # Double-tapping the jump key toggles fly mode.
  51. # type: bool
  52. # doubletap_jump = false
  53. # If disabled, "special" key is used to fly fast if both fly and fast mode are enabled.
  54. # type: bool
  55. # always_fly_fast = true
  56. # The time in seconds it takes between repeated right clicks when holding the right mouse button.
  57. # type: float
  58. # repeat_rightclick_time = 0.25
  59. # Enable random user input (only used for testing).
  60. # type: bool
  61. # random_input = false
  62. # Continuous forward movement, toggled by autoforward key.
  63. # type: bool
  64. # continuous_forward = false
  65. # Enable Joysticks
  66. # type: bool
  67. # enable_joysticks = false
  68. # The identifier of the joystick to use
  69. # type: int
  70. # joystick_id = 0
  71. # The type of joystick
  72. # type: enum values: auto, generic, xbox
  73. # joystick_type = auto
  74. # The time in seconds it takes between repeated events
  75. # when holding down a joystick button combination.
  76. # type: float
  77. # repeat_joystick_button_time = 0.17
  78. # The sensitivity of the joystick axes for moving the
  79. # ingame view frustum around.
  80. # type: float
  81. # joystick_frustum_sensitivity = 170
  82. # Key for moving the player forward.
  83. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  84. # type: key
  85. # keymap_forward = KEY_KEY_W
  86. # Key for moving the player backward.
  87. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  88. # type: key
  89. # keymap_backward = KEY_KEY_S
  90. # Key for moving the player left.
  91. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  92. # type: key
  93. # keymap_left = KEY_KEY_A
  94. # Key for moving the player right.
  95. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  96. # type: key
  97. # keymap_right = KEY_KEY_D
  98. # Key for jumping.
  99. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  100. # type: key
  101. # keymap_jump = KEY_SPACE
  102. # Key for sneaking.
  103. # Also used for climbing down and descending in water if aux1_descends is disabled.
  104. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  105. # type: key
  106. # keymap_sneak = KEY_LSHIFT
  107. # Key for opening the inventory.
  108. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  109. # type: key
  110. # keymap_inventory = KEY_KEY_I
  111. # Key for moving fast in fast mode.
  112. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  113. # type: key
  114. # keymap_special1 = KEY_KEY_E
  115. # Key for opening the chat window.
  116. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  117. # type: key
  118. # keymap_chat = KEY_KEY_T
  119. # Key for opening the chat window to type commands.
  120. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  121. # type: key
  122. # keymap_cmd = /
  123. # Key for opening the chat window to type local commands.
  124. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  125. # type: key
  126. # keymap_cmd_local = .
  127. # Key for opening the chat console.
  128. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  129. # type: key
  130. # keyman_console = KEY_F10
  131. # Key for toggling unlimited view range.
  132. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  133. # type: key
  134. # keymap_rangeselect = KEY_KEY_R
  135. # Key for toggling flying.
  136. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  137. # type: key
  138. # keymap_freemove = KEY_KEY_K
  139. # Key for toggling fast mode.
  140. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  141. # type: key
  142. # keymap_fastmove = KEY_KEY_J
  143. # Key for toggling noclip mode.
  144. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  145. # type: key
  146. # keymap_noclip = KEY_KEY_H
  147. # Key for selecting the next item in the hotbar.
  148. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  149. # type: key
  150. # keymap_hotbar_next = KEY_KEY_N
  151. # Key for selecting the previous item in the hotbar.
  152. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  153. # type: key
  154. # keymap_hotbar_previous = KEY_KEY_B
  155. # Key for muting the game.
  156. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  157. # type: key
  158. # keymap_mute = KEY_KEY_M
  159. # Key for increasing the volume.
  160. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  161. # type: key
  162. # keymap_increase_volume =
  163. # Key for decreasing the volume.
  164. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  165. # type: key
  166. # keymap_decrease_volume =
  167. # Key for toggling autoforward.
  168. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  169. # type: key
  170. # keymap_autoforward =
  171. # Key for toggling cinematic mode.
  172. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  173. # type: key
  174. # keymap_cinematic =
  175. # Key for toggling display of minimap.
  176. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  177. # type: key
  178. # keymap_minimap = KEY_F9
  179. # Key for taking screenshots.
  180. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  181. # type: key
  182. # keymap_screenshot = KEY_F12
  183. # Key for dropping the currently selected item.
  184. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  185. # type: key
  186. # keymap_drop = KEY_KEY_Q
  187. # Key to use view zoom when possible.
  188. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  189. # type: key
  190. # keymap_zoom = KEY_KEY_Z
  191. # Key for selecting the first hotbar slot.
  192. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  193. # type: key
  194. # keymap_slot1 = KEY_KEY_1
  195. # Key for selecting the second hotbar slot.
  196. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  197. # type: key
  198. # keymap_slot2 = KEY_KEY_2
  199. # Key for selecting the third hotbar slot.
  200. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  201. # type: key
  202. # keymap_slot3 = KEY_KEY_3
  203. # Key for selecting the fourth hotbar slot.
  204. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  205. # type: key
  206. # keymap_slot4 = KEY_KEY_4
  207. # Key for selecting the fifth hotbar slot.
  208. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  209. # type: key
  210. # keymap_slot5 = KEY_KEY_5
  211. # Key for selecting the sixth hotbar slot.
  212. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  213. # type: key
  214. # keymap_slot6 = KEY_KEY_6
  215. # Key for selecting the seventh hotbar slot.
  216. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  217. # type: key
  218. # keymap_slot7 = KEY_KEY_7
  219. # Key for selecting the eighth hotbar slot.
  220. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  221. # type: key
  222. # keymap_slot8 = KEY_KEY_8
  223. # Key for selecting the ninth hotbar slot.
  224. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  225. # type: key
  226. # keymap_slot9 = KEY_KEY_9
  227. # Key for selecting the tenth hotbar slot.
  228. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  229. # type: key
  230. # keymap_slot10 = KEY_KEY_0
  231. # Key for selecting the 11th hotbar slot.
  232. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  233. # type: key
  234. # keymap_slot11 =
  235. # Key for selecting the 12th hotbar slot.
  236. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  237. # type: key
  238. # keymap_slot12 =
  239. # Key for selecting the 13th hotbar slot.
  240. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  241. # type: key
  242. # keymap_slot13 =
  243. # Key for selecting the 14th hotbar slot.
  244. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  245. # type: key
  246. # keymap_slot14 =
  247. # Key for selecting the 15th hotbar slot.
  248. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  249. # type: key
  250. # keymap_slot15 =
  251. # Key for selecting the 16th hotbar slot.
  252. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  253. # type: key
  254. # keymap_slot16 =
  255. # Key for selecting the 17th hotbar slot.
  256. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  257. # type: key
  258. # keymap_slot17 =
  259. # Key for selecting the 18th hotbar slot.
  260. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  261. # type: key
  262. # keymap_slot18 =
  263. # Key for selecting the 19th hotbar slot.
  264. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  265. # type: key
  266. # keymap_slot19 =
  267. # Key for selecting the 20th hotbar slot.
  268. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  269. # type: key
  270. # keymap_slot20 =
  271. # Key for selecting the 21th hotbar slot.
  272. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  273. # type: key
  274. # keymap_slot21 =
  275. # Key for selecting the 22th hotbar slot.
  276. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  277. # type: key
  278. # keymap_slot22 =
  279. # Key for selecting the 23th hotbar slot.
  280. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  281. # type: key
  282. # keymap_slot23 =
  283. # Key for toggling the display of the HUD.
  284. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  285. # type: key
  286. # keymap_toggle_hud = KEY_F1
  287. # Key for toggling the display of the chat.
  288. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  289. # type: key
  290. # keymap_toggle_chat = KEY_F2
  291. # Key for toggling the display of the large chat console.
  292. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  293. # type: key
  294. # keymap_console = KEY_F10
  295. # Key for toggling the display of the fog.
  296. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  297. # type: key
  298. # keymap_toggle_force_fog_off = KEY_F3
  299. # Key for toggling the camera update. Only used for development
  300. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  301. # type: key
  302. # keymap_toggle_update_camera =
  303. # Key for toggling the display of debug info.
  304. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  305. # type: key
  306. # keymap_toggle_debug = KEY_F5
  307. # Key for toggling the display of the profiler. Used for development.
  308. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  309. # type: key
  310. # keymap_toggle_profiler = KEY_F6
  311. # Key for switching between first- and third-person camera.
  312. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  313. # type: key
  314. # keymap_camera_mode = KEY_F7
  315. # Key for increasing the viewing range.
  316. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  317. # type: key
  318. # keymap_increase_viewing_range_min = +
  319. # Key for decreasing the viewing range.
  320. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  321. # type: key
  322. # keymap_decrease_viewing_range_min = -
  323. # Key for printing debug stacks. Used for development.
  324. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
  325. # type: key
  326. # keymap_print_debug_stacks = KEY_KEY_P
  327. ## Network
  328. # Address to connect to.
  329. # Leave this blank to start a local server.
  330. # Note that the address field in the main menu overrides this setting.
  331. # type: string
  332. # address =
  333. # Port to connect to (UDP).
  334. # Note that the port field in the main menu overrides this setting.
  335. # type: int min: 1 max: 65535
  336. # remote_port = 30000
  337. # Whether to support older servers before protocol version 25.
  338. # Enable if you want to connect to 0.4.12 servers and before.
  339. # Servers starting with 0.4.13 will work, 0.4.12-dev servers may work.
  340. # Disabling this option will protect your password better.
  341. # type: bool
  342. # send_pre_v25_init = false
  343. # Save the map received by the client on disk.
  344. # type: bool
  345. # enable_local_map_saving = false
  346. # Show entity selection boxes
  347. # type: bool
  348. # show_entity_selectionbox = true
  349. # Enable usage of remote media server (if provided by server).
  350. # Remote servers offer a significantly faster way to download media (e.g. textures)
  351. # when connecting to the server.
  352. # type: bool
  353. # enable_remote_media_server = true
  354. # Enable Lua modding support on client.
  355. # This support is experimental and API can change.
  356. # type: bool
  357. # enable_client_modding = false
  358. # URL to the server list displayed in the Multiplayer Tab.
  359. # type: string
  360. # serverlist_url = servers.minetest.net
  361. # File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab.
  362. # type: string
  363. # serverlist_file = favoriteservers.txt
  364. # Maximum size of the out chat queue. 0 to disable queueing and -1 to make the queue size unlimited
  365. # type: int
  366. # max_out_chat_queue_size = 20
  367. ## Graphics
  368. ### In-Game
  369. #### Basic
  370. # Enable VBO
  371. # type: bool
  372. # enable_vbo = true
  373. # Whether to fog out the end of the visible area.
  374. # type: bool
  375. # enable_fog = true
  376. # Leaves style:
  377. # - Fancy: all faces visible
  378. # - Simple: only outer faces, if defined special_tiles are used
  379. # - Opaque: disable transparency
  380. # type: enum values: fancy, simple, opaque
  381. # leaves_style = fancy
  382. # Connects glass if supported by node.
  383. # type: bool
  384. # connected_glass = false
  385. # Enable smooth lighting with simple ambient occlusion.
  386. # Disable for speed or for different looks.
  387. # type: bool
  388. # smooth_lighting = true
  389. # Clouds are a client side effect.
  390. # type: bool
  391. # enable_clouds = true
  392. # Use 3D cloud look instead of flat.
  393. # type: bool
  394. # enable_3d_clouds = true
  395. # Method used to highlight selected object.
  396. # type: enum values: box, halo, none
  397. # node_highlighting = box
  398. # Adds particles when digging a node.
  399. # type: bool
  400. # enable_particles = true
  401. #### Filtering
  402. # Use mip mapping to scale textures. May slightly increase performance.
  403. # type: bool
  404. # mip_map = false
  405. # Use anisotropic filtering when viewing at textures from an angle.
  406. # type: bool
  407. # anisotropic_filter = false
  408. # Use bilinear filtering when scaling textures.
  409. # type: bool
  410. # bilinear_filter = false
  411. # Use trilinear filtering when scaling textures.
  412. # type: bool
  413. # trilinear_filter = false
  414. # Filtered textures can blend RGB values with fully-transparent neighbors,
  415. # which PNG optimizers usually discard, sometimes resulting in a dark or
  416. # light edge to transparent textures. Apply this filter to clean that up
  417. # at texture load time.
  418. # type: bool
  419. # texture_clean_transparent = false
  420. # When using bilinear/trilinear/anisotropic filters, low-resolution textures
  421. # can be blurred, so automatically upscale them with nearest-neighbor
  422. # interpolation to preserve crisp pixels. This sets the minimum texture size
  423. # for the upscaled textures; higher values look sharper, but require more
  424. # memory. Powers of 2 are recommended. Setting this higher than 1 may not
  425. # have a visible effect unless bilinear/trilinear/anisotropic filtering is
  426. # enabled.
  427. # type: int
  428. # texture_min_size = 64
  429. # Experimental option, might cause visible spaces between blocks
  430. # when set to higher number than 0.
  431. # type: enum values: 0, 1, 2, 4, 8, 16
  432. # fsaa = 0
  433. # Undersampling is similar to using lower screen resolution, but it applies
  434. # to the game world only, keeping the GUI intact.
  435. # It should give significant performance boost at the cost of less detailed image.
  436. # type: enum values: 0, 2, 3, 4
  437. # undersampling = 0
  438. #### Shaders
  439. # Shaders allow advanced visual effects and may increase performance on some video cards.
  440. # This only works with the OpenGL video backend.
  441. # type: bool
  442. # enable_shaders = true
  443. # Path to shader directory. If no path is defined, default location will be used.
  444. # type: path
  445. # shader_path =
  446. ##### Tone Mapping
  447. # Enables filmic tone mapping
  448. # type: bool
  449. # tone_mapping = false
  450. ##### Bumpmapping
  451. # Enables bumpmapping for textures. Normalmaps need to be supplied by the texture pack
  452. # or need to be auto-generated.
  453. # Requires shaders to be enabled.
  454. # type: bool
  455. # enable_bumpmapping = false
  456. # Enables on the fly normalmap generation (Emboss effect).
  457. # Requires bumpmapping to be enabled.
  458. # type: bool
  459. # generate_normalmaps = false
  460. # Strength of generated normalmaps.
  461. # type: float
  462. # normalmaps_strength = 0.6
  463. # Defines sampling step of texture.
  464. # A higher value results in smoother normal maps.
  465. # type: int min: 0 max: 2
  466. # normalmaps_smooth = 0
  467. ##### Parallax Occlusion
  468. # Enables parallax occlusion mapping.
  469. # Requires shaders to be enabled.
  470. # type: bool
  471. # enable_parallax_occlusion = false
  472. # 0 = parallax occlusion with slope information (faster).
  473. # 1 = relief mapping (slower, more accurate).
  474. # type: int min: 0 max: 1
  475. # parallax_occlusion_mode = 1
  476. # Strength of parallax.
  477. # type: float
  478. # 3d_paralax_strength = 0.025
  479. # Number of parallax occlusion iterations.
  480. # type: int
  481. # parallax_occlusion_iterations = 4
  482. # Overall scale of parallax occlusion effect.
  483. # type: float
  484. # parallax_occlusion_scale = 0.08
  485. # Overall bias of parallax occlusion effect, usually scale/2.
  486. # type: float
  487. # parallax_occlusion_bias = 0.04
  488. ##### Waving Nodes
  489. # Set to true enables waving water.
  490. # Requires shaders to be enabled.
  491. # type: bool
  492. # enable_waving_water = false
  493. # type: float
  494. # water_wave_height = 1.0
  495. # type: float
  496. # water_wave_length = 20.0
  497. # type: float
  498. # water_wave_speed = 5.0
  499. # Set to true enables waving leaves.
  500. # Requires shaders to be enabled.
  501. # type: bool
  502. # enable_waving_leaves = false
  503. # Set to true enables waving plants.
  504. # Requires shaders to be enabled.
  505. # type: bool
  506. # enable_waving_plants = false
  507. #### Advanced
  508. # Arm inertia, gives a more realistic movement of
  509. # the arm when the camera moves.
  510. # type: bool
  511. # arm_inertia = true
  512. # If FPS would go higher than this, limit it by sleeping
  513. # to not waste CPU power for no benefit.
  514. # type: int
  515. # fps_max = 60
  516. # Maximum FPS when game is paused.
  517. # type: int
  518. # pause_fps_max = 20
  519. # View distance in nodes.
  520. # type: int min: 20 max: 4000
  521. # viewing_range = 100
  522. # Width component of the initial window size.
  523. # type: int
  524. # screen_w = 1024
  525. # Height component of the initial window size.
  526. # type: int
  527. # screen_h = 600
  528. # Save window size automatically when modified.
  529. # type: bool
  530. # autosave_screensize = true
  531. # Fullscreen mode.
  532. # type: bool
  533. # fullscreen = false
  534. # Bits per pixel (aka color depth) in fullscreen mode.
  535. # type: int
  536. # fullscreen_bpp = 24
  537. # Vertical screen synchronization.
  538. # type: bool
  539. # vsync = false
  540. # Field of view in degrees.
  541. # type: int min: 30 max: 160
  542. # fov = 72
  543. # Field of view while zooming in degrees.
  544. # This requires the "zoom" privilege on the server.
  545. # type: int min: 7 max: 160
  546. # zoom_fov = 15
  547. # Adjust the gamma encoding for the light tables. Higher numbers are brighter.
  548. # This setting is for the client only and is ignored by the server.
  549. # type: float min: 0.5 max: 3.0
  550. # display_gamma = 1.0
  551. # type: float min: 0.0 max: 4.0
  552. # lighting_alpha = 0.0
  553. # type: float min: 0.0 max: 4.0
  554. # lighting_beta = 0.0
  555. # Path to texture directory. All textures are first searched from here.
  556. # type: path
  557. # texture_path =
  558. # The rendering back-end for Irrlicht.
  559. # type: enum values: null, software, burningsvideo, direct3d8, direct3d9, opengl
  560. # video_driver = opengl
  561. # Radius of cloud area stated in number of 64 node cloud squares.
  562. # Values larger than 26 will start to produce sharp cutoffs at cloud area corners.
  563. # type: int
  564. # cloud_radius = 12
  565. # Enable view bobbing and amount of view bobbing.
  566. # For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
  567. # type: float
  568. # view_bobbing_amount = 1.0
  569. # Multiplier for fall bobbing.
  570. # For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
  571. # type: float
  572. # fall_bobbing_amount = 0.0
  573. # 3D support.
  574. # Currently supported:
  575. # - none: no 3d output.
  576. # - anaglyph: cyan/magenta color 3d.
  577. # - interlaced: odd/even line based polarisation screen support.
  578. # - topbottom: split screen top/bottom.
  579. # - sidebyside: split screen side by side.
  580. # - pageflip: quadbuffer based 3d.
  581. # type: enum values: none, anaglyph, interlaced, topbottom, sidebyside, pageflip
  582. # 3d_mode = none
  583. # In-game chat console height, between 0.1 (10%) and 1.0 (100%).
  584. # type: float min: 0.1 max: 1
  585. # console_height = 1.0
  586. # In-game chat console background color (R,G,B).
  587. # type: string
  588. # console_color = (0,0,0)
  589. # In-game chat console background alpha (opaqueness, between 0 and 255).
  590. # type: int min: 0 max: 255
  591. # console_alpha = 200
  592. # Selection box border color (R,G,B).
  593. # type: string
  594. # selectionbox_color = (0,0,0)
  595. # Width of the selectionbox's lines around nodes.
  596. # type: int min: 1 max: 5
  597. # selectionbox_width = 2
  598. # Crosshair color (R,G,B).
  599. # type: string
  600. # crosshair_color = (255,255,255)
  601. # Crosshair alpha (opaqueness, between 0 and 255).
  602. # type: int min: 0 max: 255
  603. # crosshair_alpha = 255
  604. # Whether node texture animations should be desynchronized per mapblock.
  605. # type: bool
  606. # desynchronize_mapblock_texture_animation = true
  607. # Maximum proportion of current window to be used for hotbar.
  608. # Useful if there's something to be displayed right or left of hotbar.
  609. # type: float
  610. # hud_hotbar_max_width = 1.0
  611. # Modifies the size of the hudbar elements.
  612. # type: float
  613. # hud_scaling = 1.0
  614. # Enables caching of facedir rotated meshes.
  615. # type: bool
  616. # enable_mesh_cache = false
  617. # Delay between mesh updates on the client in ms. Increasing this will slow
  618. # down the rate of mesh updates, thus reducing jitter on slower clients.
  619. # type: int min: 0 max: 50
  620. # mesh_generation_interval = 0
  621. # Size of the MapBlock cache of the mesh generator. Increasing this will
  622. # increase the cache hit %, reducing the data being copied from the main
  623. # thread, thus reducing jitter.
  624. # type: int min: 0 max: 1000
  625. # meshgen_block_cache_size = 20
  626. # Enables minimap.
  627. # type: bool
  628. # enable_minimap = true
  629. # Shape of the minimap. Enabled = round, disabled = square.
  630. # type: bool
  631. # minimap_shape_round = true
  632. # True = 256
  633. # False = 128
  634. # Useable to make minimap smoother on slower machines.
  635. # type: bool
  636. # minimap_double_scan_height = true
  637. # Make fog and sky colors depend on daytime (dawn/sunset) and view direction.
  638. # type: bool
  639. # directional_colored_fog = true
  640. # The strength (darkness) of node ambient-occlusion shading.
  641. # Lower is darker, Higher is lighter. The valid range of values for this
  642. # setting is 0.25 to 4.0 inclusive. If the value is out of range it will be
  643. # set to the nearest valid value.
  644. # type: float min: 0.25 max: 4
  645. # ambient_occlusion_gamma = 2.2
  646. # Enables animation of inventory items.
  647. # type: bool
  648. # inventory_items_animations = false
  649. # Android systems only: Tries to create inventory textures from meshes
  650. # when no supported render was found.
  651. # type: bool
  652. # inventory_image_hack = false
  653. # Fraction of the visible distance at which fog starts to be rendered
  654. # type: float min: 0 max: 0.99
  655. # fog_start = 0.4
  656. # Makes all liquids opaque
  657. # type: bool
  658. # opaque_water = false
  659. ### Menus
  660. # Use a cloud animation for the main menu background.
  661. # type: bool
  662. # menu_clouds = true
  663. # Scale gui by a user specified value.
  664. # Use a nearest-neighbor-anti-alias filter to scale the GUI.
  665. # This will smooth over some of the rough edges, and blend
  666. # pixels when scaling down, at the cost of blurring some
  667. # edge pixels when images are scaled by non-integer sizes.
  668. # type: float
  669. # gui_scaling = 1.0
  670. # When gui_scaling_filter is true, all GUI images need to be
  671. # filtered in software, but some images are generated directly
  672. # to hardware (e.g. render-to-texture for nodes in inventory).
  673. # type: bool
  674. # gui_scaling_filter = false
  675. # When gui_scaling_filter_txr2img is true, copy those images
  676. # from hardware to software for scaling. When false, fall back
  677. # to the old scaling method, for video drivers that don't
  678. # properly support downloading textures back from hardware.
  679. # type: bool
  680. # gui_scaling_filter_txr2img = true
  681. # Delay showing tooltips, stated in milliseconds.
  682. # type: int
  683. # tooltip_show_delay = 400
  684. # Whether freetype fonts are used, requires freetype support to be compiled in.
  685. # type: bool
  686. # freetype = true
  687. # Path to TrueTypeFont or bitmap.
  688. # type: filepath
  689. # font_path = fonts/liberationsans.ttf
  690. # type: int
  691. # font_size = 16
  692. # Font shadow offset, if 0 then shadow will not be drawn.
  693. # type: int
  694. # font_shadow = 1
  695. # Font shadow alpha (opaqueness, between 0 and 255).
  696. # type: int min: 0 max: 255
  697. # font_shadow_alpha = 127
  698. # type: filepath
  699. # mono_font_path = fonts/liberationmono.ttf
  700. # type: int
  701. # mono_font_size = 15
  702. # This font will be used for certain languages.
  703. # type: filepath
  704. # fallback_font_path = fonts/DroidSansFallbackFull.ttf
  705. # type: int
  706. # fallback_font_size = 15
  707. # type: int
  708. # fallback_font_shadow = 1
  709. # type: int min: 0 max: 255
  710. # fallback_font_shadow_alpha = 128
  711. # Path to save screenshots at.
  712. # type: path
  713. # screenshot_path =
  714. # Format of screenshots.
  715. # type: enum values: png, jpg, bmp, pcx, ppm, tga
  716. # screenshot_format = png
  717. # Screenshot quality. Only used for JPEG format.
  718. # 1 means worst quality; 100 means best quality.
  719. # Use 0 for default quality.
  720. # type: int min: 0 max: 100
  721. # screenshot_quality = 0
  722. ### Advanced
  723. # Adjust dpi configuration to your screen (non X11/Android only) e.g. for 4k screens.
  724. # type: int
  725. # screen_dpi = 72
  726. # Windows systems only: Start Minetest with the command line window in the background.
  727. # Contains the same information as the file debug.txt (default name).
  728. # type: bool
  729. # enable_console = false
  730. ## Sound
  731. # type: bool
  732. # enable_sound = true
  733. # type: float min: 0 max: 1
  734. # sound_volume = 0.7
  735. ## Advanced
  736. # Timeout for client to remove unused map data from memory.
  737. # type: int
  738. # client_unload_unused_data_timeout = 600
  739. # Maximum number of mapblocks for client to be kept in memory.
  740. # Set to -1 for unlimited amount.
  741. # type: int
  742. # client_mapblock_limit = 5000
  743. # Whether to show the client debug info (has the same effect as hitting F5).
  744. # type: bool
  745. # show_debug = false
  746. #
  747. # Server / Singleplayer
  748. #
  749. # Name of the server, to be displayed when players join and in the serverlist.
  750. # type: string
  751. # server_name = Minetest server
  752. # Description of server, to be displayed when players join and in the serverlist.
  753. # type: string
  754. # server_description = mine here
  755. # Domain name of server, to be displayed in the serverlist.
  756. # type: string
  757. # server_address = game.minetest.net
  758. # Homepage of server, to be displayed in the serverlist.
  759. # type: string
  760. # server_url = http://minetest.net
  761. # Automaticaly report to the serverlist.
  762. # type: bool
  763. # server_announce = false
  764. # Announce to this serverlist.
  765. # If you want to announce your ipv6 address, use serverlist_url = v6.servers.minetest.net.
  766. # type: string
  767. # serverlist_url = servers.minetest.net
  768. # Remove color codes from incoming chat messages
  769. # Use this to stop players from being able to use color in their messages
  770. # type: bool
  771. # strip_color_codes = false
  772. ## Network
  773. # Network port to listen (UDP).
  774. # This value will be overridden when starting from the main menu.
  775. # type: int
  776. # port = 30000
  777. # The network interface that the server listens on.
  778. # type: string
  779. # bind_address =
  780. # Enable to disallow old clients from connecting.
  781. # Older clients are compatible in the sense that they will not crash when connecting
  782. # to new servers, but they may not support all new features that you are expecting.
  783. # type: bool
  784. # strict_protocol_version_checking = false
  785. # Specifies URL from which client fetches media instead of using UDP.
  786. # $filename should be accessible from $remote_media$filename via cURL
  787. # (obviously, remote_media should end with a slash).
  788. # Files that are not present will be fetched the usual way.
  789. # type: string
  790. # remote_media =
  791. # Enable/disable running an IPv6 server. An IPv6 server may be restricted
  792. # to IPv6 clients, depending on system configuration.
  793. # Ignored if bind_address is set.
  794. # type: bool
  795. # ipv6_server = false
  796. ### Advanced
  797. # Maximum number of blocks that are simultaneously sent per client.
  798. # type: int
  799. # max_simultaneous_block_sends_per_client = 10
  800. # Maximum number of blocks that are simultaneously sent in total.
  801. # type: int
  802. # max_simultaneous_block_sends_server_total = 40
  803. # To reduce lag, block transfers are slowed down when a player is building something.
  804. # This determines how long they are slowed down after placing or removing a node.
  805. # type: float
  806. # full_block_send_enable_min_time_from_building = 2.0
  807. # Maximum number of packets sent per send step, if you have a slow connection
  808. # try reducing it, but don't reduce it to a number below double of targeted
  809. # client number.
  810. # type: int
  811. # max_packets_per_iteration = 1024
  812. ## Game
  813. # Default game when creating a new world.
  814. # This will be overridden when creating a world from the main menu.
  815. # type: string
  816. # default_game = minetest
  817. # Message of the day displayed to players connecting.
  818. # type: string
  819. # motd =
  820. # Maximum number of players that can connect simultaneously.
  821. # type: int
  822. # max_users = 15
  823. # World directory (everything in the world is stored here).
  824. # Not needed if starting from the main menu.
  825. # type: path
  826. # map-dir =
  827. # Time in seconds for item entity (dropped items) to live.
  828. # Setting it to -1 disables the feature.
  829. # type: int
  830. # item_entity_ttl = 900
  831. # If enabled, show the server status message on player connection.
  832. # type: bool
  833. # show_statusline_on_connect = true
  834. # Enable players getting damage and dying.
  835. # type: bool
  836. # enable_damage = false
  837. # Enable creative mode for new created maps.
  838. # type: bool
  839. # creative_mode = false
  840. # A chosen map seed for a new map, leave empty for random.
  841. # Will be overridden when creating a new world in the main menu.
  842. # type: string
  843. # fixed_map_seed =
  844. # New users need to input this password.
  845. # type: string
  846. # default_password =
  847. # The privileges that new users automatically get.
  848. # See /privs in game for a full list on your server and mod configuration.
  849. # type: string
  850. # default_privs = interact, shout
  851. # Privileges that players with basic_privs can grant
  852. # type: string
  853. # basic_privs = interact, shout
  854. # Whether players are shown to clients without any range limit.
  855. # Deprecated, use the setting player_transfer_distance instead.
  856. # type: bool
  857. # unlimited_player_transfer_distance = true
  858. # Defines the maximal player transfer distance in blocks (0 = unlimited).
  859. # type: int
  860. # player_transfer_distance = 0
  861. # Whether to allow players to damage and kill each other.
  862. # type: bool
  863. # enable_pvp = true
  864. # If this is set, players will always (re)spawn at the given position.
  865. # type: string
  866. # static_spawnpoint =
  867. # If enabled, new players cannot join with an empty password.
  868. # type: bool
  869. # disallow_empty_password = false
  870. # If enabled, disable cheat prevention in multiplayer.
  871. # type: bool
  872. # disable_anticheat = false
  873. # If enabled, actions are recorded for rollback.
  874. # This option is only read when server starts.
  875. # type: bool
  876. # enable_rollback_recording = false
  877. # A message to be displayed to all clients when the server shuts down.
  878. # type: string
  879. # kick_msg_shutdown = Server shutting down.
  880. # A message to be displayed to all clients when the server crashes.
  881. # type: string
  882. # kick_msg_crash = This server has experienced an internal error. You will now be disconnected.
  883. # Whether to ask clients to reconnect after a (Lua) crash.
  884. # Set this to true if your server is set up to restart automatically.
  885. # type: bool
  886. # ask_reconnect_on_crash = false
  887. # From how far clients know about objects, stated in mapblocks (16 nodes).
  888. # type: int
  889. # active_object_send_range_blocks = 3
  890. # How large area of blocks are subject to the active block stuff, stated in mapblocks (16 nodes).
  891. # In active blocks objects are loaded and ABMs run.
  892. # type: int
  893. # active_block_range = 3
  894. # From how far blocks are sent to clients, stated in mapblocks (16 nodes).
  895. # type: int
  896. # max_block_send_distance = 10
  897. # Maximum number of forceloaded mapblocks.
  898. # type: int
  899. # max_forceloaded_blocks = 16
  900. # Interval of sending time of day to clients.
  901. # type: int
  902. # time_send_interval = 5
  903. # Controls length of day/night cycle.
  904. # Examples: 72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged.
  905. # type: int
  906. # time_speed = 72
  907. # Interval of saving important changes in the world, stated in seconds.
  908. # type: float
  909. # server_map_save_interval = 5.3
  910. ### Physics
  911. # type: float
  912. # movement_acceleration_default = 3
  913. # type: float
  914. # movement_acceleration_air = 2
  915. # type: float
  916. # movement_acceleration_fast = 10
  917. # type: float
  918. # movement_speed_walk = 4
  919. # type: float
  920. # movement_speed_crouch = 1.35
  921. # type: float
  922. # movement_speed_fast = 20
  923. # type: float
  924. # movement_speed_climb = 3
  925. # type: float
  926. # movement_speed_jump = 6.5
  927. # type: float
  928. # movement_liquid_fluidity = 1
  929. # type: float
  930. # movement_liquid_fluidity_smooth = 0.5
  931. # type: float
  932. # movement_liquid_sink = 10
  933. # type: float
  934. # movement_gravity = 9.81
  935. ### Advanced
  936. # Handling for deprecated lua api calls:
  937. # - legacy: (try to) mimic old behaviour (default for release).
  938. # - log: mimic and log backtrace of deprecated call (default for debug).
  939. # - error: abort on usage of deprecated call (suggested for mod developers).
  940. # type: enum values: legacy, log, error
  941. # deprecated_lua_api_handling = legacy
  942. # Number of extra blocks that can be loaded by /clearobjects at once.
  943. # This is a trade-off between sqlite transaction overhead and
  944. # memory consumption (4096=100MB, as a rule of thumb).
  945. # type: int
  946. # max_clearobjects_extra_loaded_blocks = 4096
  947. # How much the server will wait before unloading unused mapblocks.
  948. # Higher value is smoother, but will use more RAM.
  949. # type: int
  950. # server_unload_unused_data_timeout = 29
  951. # Maximum number of statically stored objects in a block.
  952. # type: int
  953. # max_objects_per_block = 64
  954. # See http://www.sqlite.org/pragma.html#pragma_synchronous
  955. # type: enum values: 0, 1, 2
  956. # sqlite_synchronous = 2
  957. # Length of a server tick and the interval at which objects are generally updated over network.
  958. # type: float
  959. # dedicated_server_step = 0.09
  960. # Time in between active block management cycles
  961. # type: float
  962. # active_block_mgmt_interval = 2.0
  963. # Length of time between ABM execution cycles
  964. # type: float
  965. # abm_interval = 1.0
  966. # Length of time between NodeTimer execution cycles
  967. # type: float
  968. # nodetimer_interval = 0.2
  969. # If enabled, invalid world data won't cause the server to shut down.
  970. # Only enable this if you know what you are doing.
  971. # type: bool
  972. # ignore_world_load_errors = false
  973. # Max liquids processed per step.
  974. # type: int
  975. # liquid_loop_max = 100000
  976. # The time (in seconds) that the liquids queue may grow beyond processing
  977. # capacity until an attempt is made to decrease its size by dumping old queue
  978. # items. A value of 0 disables the functionality.
  979. # type: int
  980. # liquid_queue_purge_time = 0
  981. # Liquid update interval in seconds.
  982. # type: float
  983. # liquid_update = 1.0
  984. # At this distance the server will aggressively optimize which blocks are sent to clients.
  985. # Small values potentially improve performance a lot, at the expense of visible rendering glitches.
  986. # (some blocks will not be rendered under water and in caves, as well as sometimes on land)
  987. # Setting this to a value greater than max_block_send_distance disables this optimization.
  988. # Stated in mapblocks (16 nodes)
  989. # type: int min: 2
  990. # block_send_optimize_distance = 4
  991. # If enabled the server will perform map block occlusion culling based on
  992. # on the eye position of the player. This can reduce the number of blocks
  993. # sent to the client 50-80%. The client will not longer receive most invisible
  994. # so that the utility of noclip mode is reduced.
  995. # type: bool
  996. # server_side_occlusion_culling = true
  997. # Restricts the access of certain client-side functions on servers
  998. # Combine these byteflags below to restrict more client-side features:
  999. # LOOKUP_NODES_LIMIT: 1 (limits get_node call client-side to csm_flavour_noderange_limit)
  1000. # CHAT_MESSAGES: 2 (disable send_chat_message call client-side)
  1001. # READ_ITEMDEFS: 4 (disable get_item_def call client-side)
  1002. # READ_NODEDEFS: 8 (disable get_node_def call client-side)
  1003. # type: int
  1004. # type: int
  1005. # csm_flavour_limits = 3
  1006. # If the CSM flavour for node range is enabled, get_node is limited to
  1007. # this many nodes from the player.
  1008. # type: int
  1009. # csm_flavour_noderange_limit = 8
  1010. ## Security
  1011. # Prevent mods from doing insecure things like running shell commands.
  1012. # type: bool
  1013. # secure.enable_security = true
  1014. # Comma-separated list of trusted mods that are allowed to access insecure
  1015. # functions even when mod security is on (via request_insecure_environment()).
  1016. # type: string
  1017. # secure.trusted_mods =
  1018. # Comma-separated list of mods that are allowed to access HTTP APIs, which
  1019. # allow them to upload and download data to/from the internet.
  1020. # type: string
  1021. # secure.http_mods =
  1022. ## Advanced
  1023. ### Profiling
  1024. # Load the game profiler to collect game profiling data.
  1025. # Provides a /profiler command to access the compiled profile.
  1026. # Useful for mod developers and server operators.
  1027. # type: bool
  1028. # profiler.load = false
  1029. # The default format in which profiles are being saved,
  1030. # when calling `/profiler save [format]` without format.
  1031. # type: enum values: txt, csv, lua, json, json_pretty
  1032. # profiler.default_report_format = txt
  1033. # The file path relative to your worldpath in which profiles will be saved to.
  1034. # type: string
  1035. # profiler.report_path = ""
  1036. #### Instrumentation
  1037. # Instrument the methods of entities on registration.
  1038. # type: bool
  1039. # instrument.entity = true
  1040. # Instrument the action function of Active Block Modifiers on registration.
  1041. # type: bool
  1042. # instrument.abm = true
  1043. # Instrument the action function of Loading Block Modifiers on registration.
  1044. # type: bool
  1045. # instrument.lbm = true
  1046. # Instrument chatcommands on registration.
  1047. # type: bool
  1048. # instrument.chatcommand = true
  1049. # Instrument global callback functions on registration.
  1050. # (anything you pass to a minetest.register_*() function)
  1051. # type: bool
  1052. # instrument.global_callback = true
  1053. ##### Advanced
  1054. # Instrument builtin.
  1055. # This is usually only needed by core/builtin contributors
  1056. # type: bool
  1057. # instrument.builtin = false
  1058. # Have the profiler instrument itself:
  1059. # * Instrument an empty function.
  1060. # This estimates the overhead, that instrumentation is adding (+1 function call).
  1061. # * Instrument the sampler being used to update the statistics.
  1062. # type: bool
  1063. # instrument.profiler = false
  1064. #
  1065. # Client and Server
  1066. #
  1067. # Name of the player.
  1068. # When running a server, clients connecting with this name are admins.
  1069. # When starting from the main menu, this is overridden.
  1070. # type: string
  1071. # name =
  1072. # Set the language. Leave empty to use the system language.
  1073. # A restart is required after changing this.
  1074. # type: enum values: , be, ca, cs, da, de, en, eo, es, et, fr, he, hu, id, it, ja, jbo, ko, ky, lt, nb, nl, pl, pt, pt_BR, ro, ru, sr_Cyrl, tr, uk, zh_CN, zh_TW
  1075. # language =
  1076. # Level of logging to be written to debug.txt:
  1077. # - <nothing> (no logging)
  1078. # - none (messages with no level)
  1079. # - error
  1080. # - warning
  1081. # - action
  1082. # - info
  1083. # - verbose
  1084. # type: enum values: , none, error, warning, action, info, verbose
  1085. # debug_log_level = action
  1086. # IPv6 support.
  1087. # type: bool
  1088. # enable_ipv6 = true
  1089. ## Advanced
  1090. # Default timeout for cURL, stated in milliseconds.
  1091. # Only has an effect if compiled with cURL.
  1092. # type: int
  1093. # curl_timeout = 5000
  1094. # Limits number of parallel HTTP requests. Affects:
  1095. # - Media fetch if server uses remote_media setting.
  1096. # - Serverlist download and server announcement.
  1097. # - Downloads performed by main menu (e.g. mod manager).
  1098. # Only has an effect if compiled with cURL.
  1099. # type: int
  1100. # curl_parallel_limit = 8
  1101. # Maximum time in ms a file download (e.g. a mod download) may take.
  1102. # type: int
  1103. # curl_file_download_timeout = 300000
  1104. # Makes DirectX work with LuaJIT. Disable if it causes troubles.
  1105. # type: bool
  1106. # high_precision_fpu = true
  1107. # Replaces the default main menu with a custom one.
  1108. # type: string
  1109. # main_menu_script =
  1110. # type: int
  1111. # main_menu_game_mgr = 0
  1112. # type: int
  1113. # main_menu_mod_mgr = 1
  1114. # Print the engine's profiling data in regular intervals (in seconds). 0 = disable. Useful for developers.
  1115. # type: int
  1116. # profiler_print_interval = 0
  1117. #
  1118. # Mapgen
  1119. #
  1120. # Name of map generator to be used when creating a new world.
  1121. # Creating a world in the main menu will override this.
  1122. # type: enum values: v5, v6, v7, flat, valleys, fractal, singlenode
  1123. # mg_name = v7
  1124. # Water surface level of the world.
  1125. # type: int
  1126. # water_level = 1
  1127. # From how far blocks are generated for clients, stated in mapblocks (16 nodes).
  1128. # type: int
  1129. # max_block_generate_distance = 6
  1130. # Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).
  1131. # Only mapchunks completely within the mapgen limit are generated.
  1132. # Value is stored per-world.
  1133. # type: int min: 0 max: 31000
  1134. # mapgen_limit = 31000
  1135. # Global map generation attributes.
  1136. # In Mapgen v6 the 'decorations' flag controls all decorations except trees
  1137. # and junglegrass, in all other mapgens this flag controls all decorations.
  1138. # Flags that are not specified in the flag string are not modified from the default.
  1139. # Flags starting with 'no' are used to explicitly disable them.
  1140. # type: flags possible values: caves, dungeons, light, decorations, nocaves, nodungeons, nolight, nodecorations
  1141. # mg_flags = caves,dungeons,light,decorations
  1142. # Whether dungeons occasionally project from the terrain.
  1143. # type: bool
  1144. # projecting_dungeons = true
  1145. ## Biome API temperature and humidity noise parameters
  1146. # Temperature variation for biomes.
  1147. # type: noise_params
  1148. # mg_biome_np_heat = 50, 50, (1000, 1000, 1000), 5349, 3, 0.5, 2.0
  1149. # Small-scale temperature variation for blending biomes on borders.
  1150. # type: noise_params
  1151. # mg_biome_np_heat_blend = 0, 1.5, (8, 8, 8), 13, 2, 1.0, 2.0
  1152. # Humidity variation for biomes.
  1153. # type: noise_params
  1154. # mg_biome_np_humidity = 50, 50, (1000, 1000, 1000), 842, 3, 0.5, 2.0
  1155. # Small-scale humidity variation for blending biomes on borders.
  1156. # type: noise_params
  1157. # mg_biome_np_humidity_blend = 0, 1.5, (8, 8, 8), 90003, 2, 1.0, 2.0
  1158. ## Mapgen V5
  1159. # Map generation attributes specific to Mapgen v5.
  1160. # Flags that are not specified in the flag string are not modified from the default.
  1161. # Flags starting with 'no' are used to explicitly disable them.
  1162. # type: flags possible values: caverns, nocaverns
  1163. # mgv5_spflags = caverns
  1164. # Controls width of tunnels, a smaller value creates wider tunnels.
  1165. # type: float
  1166. # mgv5_cave_width = 0.125
  1167. # Y of upper limit of large caves.
  1168. # type: int
  1169. # mgv5_large_cave_depth = -256
  1170. # Y of upper limit of lava in large caves.
  1171. # type: int
  1172. # mgv5_lava_depth = -256
  1173. # Y-level of cavern upper limit.
  1174. # type: int
  1175. # mgv5_cavern_limit = -256
  1176. # Y-distance over which caverns expand to full size.
  1177. # type: int
  1178. # mgv5_cavern_taper = 256
  1179. # Defines full size of caverns, smaller values create larger caverns.
  1180. # type: float
  1181. # mgv5_cavern_threshold = 0.7
  1182. ### Noises
  1183. # Variation of biome filler depth.
  1184. # type: noise_params
  1185. # mgv5_np_filler_depth = 0, 1, (150, 150, 150), 261, 4, 0.7, 2.0
  1186. # Variation of terrain vertical scale.
  1187. # When noise is < -0.55 terrain is near-flat.
  1188. # type: noise_params
  1189. # mgv5_np_factor = 0, 1, (250, 250, 250), 920381, 3, 0.45, 2.0
  1190. # Y-level of average terrain surface.
  1191. # type: noise_params
  1192. # mgv5_np_height = 0, 10, (250, 250, 250), 84174, 4, 0.5, 2.0
  1193. # First of 2 3D noises that together define tunnels.
  1194. # type: noise_params
  1195. # mgv5_np_cave1 = 0, 12, (50, 50, 50), 52534, 4, 0.5, 2.0
  1196. # Second of 2 3D noises that together define tunnels.
  1197. # type: noise_params
  1198. # mgv5_np_cave2 = 0, 12, (50, 50, 50), 10325, 4, 0.5, 2.0
  1199. # 3D noise defining giant caverns.
  1200. # type: noise_params
  1201. # mgv5_np_cavern = 0, 1, (384, 128, 384), 723, 5, 0.63, 2.0
  1202. ## Mapgen V6
  1203. # Map generation attributes specific to Mapgen v6.
  1204. # The 'snowbiomes' flag enables the new 5 biome system.
  1205. # When the new biome system is enabled jungles are automatically enabled and
  1206. # the 'jungles' flag is ignored.
  1207. # Flags that are not specified in the flag string are not modified from the default.
  1208. # Flags starting with 'no' are used to explicitly disable them.
  1209. # type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, flat, trees, nojungles, nobiomeblend, nomudflow, nosnowbiomes, noflat, notrees
  1210. # mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes,trees
  1211. # Deserts occur when np_biome exceeds this value.
  1212. # When the new biome system is enabled, this is ignored.
  1213. # type: float
  1214. # mgv6_freq_desert = 0.45
  1215. # Sandy beaches occur when np_beach exceeds this value.
  1216. # type: float
  1217. # mgv6_freq_beach = 0.15
  1218. ### Noises
  1219. # Y-level of lower terrain and lakebeds.
  1220. # type: noise_params
  1221. # mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0
  1222. # Y-level of higher (cliff-top) terrain.
  1223. # type: noise_params
  1224. # mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6, 2.0
  1225. # Varies steepness of cliffs.
  1226. # type: noise_params
  1227. # mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7, 2.0
  1228. # Defines areas of 'terrain_higher' (cliff-top terrain).
  1229. # type: noise_params
  1230. # mgv6_np_height_select = 0.5, 1, (250, 250, 250), 4213, 5, 0.69, 2.0
  1231. # Varies depth of biome surface nodes.
  1232. # type: noise_params
  1233. # mgv6_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55, 2.0
  1234. # Defines areas with sandy beaches.
  1235. # type: noise_params
  1236. # mgv6_np_beach = 0, 1, (250, 250, 250), 59420, 3, 0.50, 2.0
  1237. # Temperature variation for biomes.
  1238. # type: noise_params
  1239. # mgv6_np_biome = 0, 1, (500, 500, 500), 9130, 3, 0.50, 2.0
  1240. # Variation of number of caves.
  1241. # type: noise_params
  1242. # mgv6_np_cave = 6, 6, (250, 250, 250), 34329, 3, 0.50, 2.0
  1243. # Humidity variation for biomes.
  1244. # type: noise_params
  1245. # mgv6_np_humidity = 0.5, 0.5, (500, 500, 500), 72384, 3, 0.50, 2.0
  1246. # Defines tree areas and tree density.
  1247. # type: noise_params
  1248. # mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66, 2.0
  1249. # Defines areas where trees have apples.
  1250. # type: noise_params
  1251. # mgv6_np_apple_trees = 0, 1, (100, 100, 100), 342902, 3, 0.45, 2.0
  1252. ## Mapgen V7
  1253. # Map generation attributes specific to Mapgen v7.
  1254. # 'ridges' enables the rivers.
  1255. # 'biomerepeat' causes surface biomes to repeat in the floatlands.
  1256. # Flags that are not specified in the flag string are not modified from the default.
  1257. # Flags starting with 'no' are used to explicitly disable them.
  1258. # type: flags possible values: mountains, ridges, floatlands, caverns, biomerepeat, nomountains, noridges, nofloatlands, nocaverns, nobiomerepeat
  1259. # mgv7_spflags = mountains,ridges,nofloatlands,caverns,biomerepeat
  1260. # Y of mountain density gradient zero level. Used to shift mountains vertically.
  1261. # type: int
  1262. # mgv7_mount_zero_level = 0
  1263. # Controls width of tunnels, a smaller value creates wider tunnels.
  1264. # type: float
  1265. # mgv7_cave_width = 0.09
  1266. # Y of upper limit of large caves.
  1267. # type: int
  1268. # mgv7_large_cave_depth = -33
  1269. # Y of upper limit of lava in large caves.
  1270. # type: int
  1271. # mgv7_lava_depth = -256
  1272. # Controls the density of floatland mountain terrain.
  1273. # Is an offset added to the 'np_mountain' noise value.
  1274. # type: float
  1275. # mgv7_float_mount_density = 0.6
  1276. # Typical maximum height, above and below midpoint, of floatland mountain terrain.
  1277. # type: float
  1278. # mgv7_float_mount_height = 128.0
  1279. # Y-level of floatland midpoint and lake surface.
  1280. # type: int
  1281. # mgv7_floatland_level = 1280
  1282. # Y-level to which floatland shadows extend.
  1283. # type: int
  1284. # mgv7_shadow_limit = 1024
  1285. # Y-level of cavern upper limit.
  1286. # type: int
  1287. # mgv7_cavern_limit = -256
  1288. # Y-distance over which caverns expand to full size.
  1289. # type: int
  1290. # mgv7_cavern_taper = 256
  1291. # Defines full size of caverns, smaller values create larger caverns.
  1292. # type: float
  1293. # mgv7_cavern_threshold = 0.7
  1294. ### Noises
  1295. # Y-level of higher (cliff-top) terrain.
  1296. # type: noise_params
  1297. # mgv7_np_terrain_base = 4, 70, (600, 600, 600), 82341, 5, 0.6, 2.0
  1298. # Y-level of lower terrain and lakebeds.
  1299. # type: noise_params
  1300. # mgv7_np_terrain_alt = 4, 25, (600, 600, 600), 5934, 5, 0.6, 2.0
  1301. # Varies roughness of terrain.
  1302. # Defines the 'persistence' value for terrain_base and terrain_alt noises.
  1303. # type: noise_params
  1304. # mgv7_np_terrain_persist = 0.6, 0.1, (2000, 2000, 2000), 539, 3, 0.6, 2.0
  1305. # Defines areas of higher (cliff-top) terrain and affects steepness of cliffs.
  1306. # type: noise_params
  1307. # mgv7_np_height_select = -8, 16, (500, 500, 500), 4213, 6, 0.7, 2.0
  1308. # Variation of biome filler depth.
  1309. # type: noise_params
  1310. # mgv7_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
  1311. # Variation of maximum mountain height (in nodes).
  1312. # type: noise_params
  1313. # mgv7_np_mount_height = 256, 112, (1000, 1000, 1000), 72449, 3, 0.6, 2.0
  1314. # Defines large-scale river channel structure.
  1315. # type: noise_params
  1316. # mgv7_np_ridge_uwater = 0, 1, (1000, 1000, 1000), 85039, 5, 0.6, 2.0
  1317. # Defines areas of floatland smooth terrain.
  1318. # Smooth floatlands occur when noise > 0.
  1319. # type: noise_params
  1320. # mgv7_np_floatland_base = -0.6, 1.5, (600, 600, 600), 114, 5, 0.6, 2.0
  1321. # Variation of hill height and lake depth on floatland smooth terrain.
  1322. # type: noise_params
  1323. # mgv7_np_float_base_height = 48, 24, (300, 300, 300), 907, 4, 0.7, 2.0
  1324. # 3D noise defining mountain structure and height.
  1325. # Also defines structure of floatland mountain terrain.
  1326. # type: noise_params
  1327. # mgv7_np_mountain = -0.6, 1, (250, 350, 250), 5333, 5, 0.63, 2.0
  1328. # 3D noise defining structure of river canyon walls.
  1329. # type: noise_params
  1330. # mgv7_np_ridge = 0, 1, (100, 100, 100), 6467, 4, 0.75, 2.0
  1331. # 3D noise defining giant caverns.
  1332. # type: noise_params
  1333. # mgv7_np_cavern = 0, 1, (384, 128, 384), 723, 5, 0.63, 2.0
  1334. # First of 2 3D noises that together define tunnels.
  1335. # type: noise_params
  1336. # mgv7_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
  1337. # Second of 2 3D noises that together define tunnels.
  1338. # type: noise_params
  1339. # mgv7_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
  1340. ## Mapgen Carpathian
  1341. # Map generation attributes specific to Mapgen Carpathian.
  1342. # Flags that are not specified in the flag string are not modified from the default.
  1343. # Flags starting with 'no' are used to explicitly disable them.
  1344. # type: flags possible values: caverns, nocaverns
  1345. # mgcarpathian_spflags = caverns
  1346. # Controls width of tunnels, a smaller value creates wider tunnels.
  1347. # type: float
  1348. # mgcarpathian_cave_width = 0.09
  1349. # Y of upper limit of large caves.
  1350. # type: int
  1351. # mgcarpathian_large_cave_depth = -33
  1352. # Y of upper limit of lava in large caves.
  1353. # type: int
  1354. # mgcarpathian_lava_depth = -256
  1355. # Y-level of cavern upper limit.
  1356. # type: int
  1357. # mgcarpathian_cavern_limit = -256
  1358. # Y-distance over which caverns expand to full size.
  1359. # type: int
  1360. # mgcarpathian_cavern_taper = 256
  1361. # Defines full size of caverns, smaller values create larger caverns.
  1362. # type: float
  1363. # mgcarpathian_cavern_threshold = 0.7
  1364. ### Noises
  1365. # 2D noise that defines the base ground level.
  1366. # type: noise_params
  1367. # mgcarpathian_np_base = 12, 1, (2557, 2557, 2557), 6538, 4, 0.8, 0.5
  1368. # Variation of biome filler depth.
  1369. # type: noise_params
  1370. # mgcarpathian_np_filler_depth = 0, 1, (128, 128, 128), 261, 3, 0.7, 2.0
  1371. # First of 4 3D noises that together define hill/mountain range height.
  1372. # type: noise_params
  1373. # mgcarpathian_np_height1 = 0, 5, (251, 251, 251), 9613, 5, 0.5, 2.0
  1374. # Second of 4 3D noises that together define hill/mountain range height.
  1375. # type: noise_params
  1376. # mgcarpathian_np_height2 = 0, 5, (383, 383, 383), 1949, 5, 0.5, 2.0
  1377. # Third of 4 3D noises that together define hill/mountain range height.
  1378. # type: noise_params
  1379. # mgcarpathian_np_height3 = 0, 5, (509, 509, 509), 3211, 5, 0.5, 2.0
  1380. # Fourth of 4 3D noises that together define hill/mountain range height.
  1381. # type: noise_params
  1382. # mgcarpathian_np_height4 = 0, 5, (631, 631, 631), 1583, 5, 0.5, 2.0
  1383. # 2D noise that controls the size/occurance of rolling hills.
  1384. # type: noise_params
  1385. # mgcarpathian_np_hills_terrain = 1, 1, (1301, 1301, 1301), 1692, 3, 0.5, 2.0
  1386. # 2D noise that controls the size/occurance of ridged mountain ranges.
  1387. # type: noise_params
  1388. # mgcarpathian_np_ridge_terrain = 1, 1, (1889, 1889, 1889), 3568, 3, 0.5, 2.0
  1389. # 2D noise that controls the size/occurance of step mountain ranges.
  1390. # type: noise_params
  1391. # mgcarpathian_np_step_terrain = 1, 1, (1889, 1889, 1889), 4157, 3, 0.5, 2.0
  1392. # 2D noise that controls the shape/size of rolling hills.
  1393. # type: noise_params
  1394. # mgcarpathian_np_hills = 0, 3, (257, 257, 257), 6604, 6, 0.5, 2.0
  1395. # 2D noise that controls the shape/size of ridged mountains.
  1396. # type: noise_params
  1397. # mgcarpathian_np_ridge_mnt = 0, 12, (743, 743, 743), 5520, 6, 0.7, 2.0
  1398. # 2D noise that controls the shape/size of step mountains.
  1399. # type: noise_params
  1400. # mgcarpathian_np_step_mnt = 0, 8, (509, 509, 509), 2590, 6, 0.6, 2.0
  1401. # 3D noise for mountain overhangs, cliffs, etc. Usually small variations.
  1402. # type: noise_params
  1403. # mgcarpathian_np_mnt_var = 0, 1, (499, 499, 499), 2490, 5, 0.6, 2.0
  1404. # First of 2 3D noises that together define tunnels.
  1405. # type: noise_params
  1406. # mgcarpathian_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
  1407. # Second of 2 3D noises that together define tunnels.
  1408. # type: noise_params
  1409. # mgcarpathian_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
  1410. # 3D noise defining giant caverns.
  1411. # type: noise_params
  1412. # mgcarpathian_np_cavern = 0, 1, (384, 128, 384), 723, 5, 0.63, 2.0
  1413. ## Mapgen Flat
  1414. # Map generation attributes specific to Mapgen flat.
  1415. # Occasional lakes and hills can be added to the flat world.
  1416. # Flags that are not specified in the flag string are not modified from the default.
  1417. # Flags starting with 'no' are used to explicitly disable them.
  1418. # type: flags possible values: lakes, hills, nolakes, nohills
  1419. # mgflat_spflags = nolakes,nohills
  1420. # Y of flat ground.
  1421. # type: int
  1422. # mgflat_ground_level = 8
  1423. # Y of upper limit of large caves.
  1424. # type: int
  1425. # mgflat_large_cave_depth = -33
  1426. # Y of upper limit of lava in large caves.
  1427. # type: int
  1428. # mgflat_lava_depth = -256
  1429. # Controls width of tunnels, a smaller value creates wider tunnels.
  1430. # type: float
  1431. # mgflat_cave_width = 0.09
  1432. # Terrain noise threshold for lakes.
  1433. # Controls proportion of world area covered by lakes.
  1434. # Adjust towards 0.0 for a larger proportion.
  1435. # type: float
  1436. # mgflat_lake_threshold = -0.45
  1437. # Controls steepness/depth of lake depressions.
  1438. # type: float
  1439. # mgflat_lake_steepness = 48.0
  1440. # Terrain noise threshold for hills.
  1441. # Controls proportion of world area covered by hills.
  1442. # Adjust towards 0.0 for a larger proportion.
  1443. # type: float
  1444. # mgflat_hill_threshold = 0.45
  1445. # Controls steepness/height of hills.
  1446. # type: float
  1447. # mgflat_hill_steepness = 64.0
  1448. ### Noises
  1449. # Defines location and terrain of optional hills and lakes.
  1450. # type: noise_params
  1451. # mgflat_np_terrain = 0, 1, (600, 600, 600), 7244, 5, 0.6, 2.0
  1452. # Variation of biome filler depth.
  1453. # type: noise_params
  1454. # mgflat_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
  1455. # First of 2 3D noises that together define tunnels.
  1456. # type: noise_params
  1457. # mgflat_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
  1458. # Second of 2 3D noises that together define tunnels.
  1459. # type: noise_params
  1460. # mgflat_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
  1461. ## Mapgen Fractal
  1462. # Controls width of tunnels, a smaller value creates wider tunnels.
  1463. # type: float
  1464. # mgfractal_cave_width = 0.09
  1465. # Y of upper limit of large caves.
  1466. # type: int
  1467. # mgfractal_large_cave_depth = -33
  1468. # Y of upper limit of lava in large caves.
  1469. # type: int
  1470. # mgfractal_lava_depth = -256
  1471. # Choice of 18 fractals from 9 formulas.
  1472. # 1 = 4D "Roundy" mandelbrot set.
  1473. # 2 = 4D "Roundy" julia set.
  1474. # 3 = 4D "Squarry" mandelbrot set.
  1475. # 4 = 4D "Squarry" julia set.
  1476. # 5 = 4D "Mandy Cousin" mandelbrot set.
  1477. # 6 = 4D "Mandy Cousin" julia set.
  1478. # 7 = 4D "Variation" mandelbrot set.
  1479. # 8 = 4D "Variation" julia set.
  1480. # 9 = 3D "Mandelbrot/Mandelbar" mandelbrot set.
  1481. # 10 = 3D "Mandelbrot/Mandelbar" julia set.
  1482. # 11 = 3D "Christmas Tree" mandelbrot set.
  1483. # 12 = 3D "Christmas Tree" julia set.
  1484. # 13 = 3D "Mandelbulb" mandelbrot set.
  1485. # 14 = 3D "Mandelbulb" julia set.
  1486. # 15 = 3D "Cosine Mandelbulb" mandelbrot set.
  1487. # 16 = 3D "Cosine Mandelbulb" julia set.
  1488. # 17 = 4D "Mandelbulb" mandelbrot set.
  1489. # 18 = 4D "Mandelbulb" julia set.
  1490. # type: int min: 1 max: 18
  1491. # mgfractal_fractal = 1
  1492. # Iterations of the recursive function.
  1493. # Controls the amount of fine detail.
  1494. # type: int
  1495. # mgfractal_iterations = 11
  1496. # Approximate (X,Y,Z) scale of fractal in nodes.
  1497. # type: v3f
  1498. # mgfractal_scale = (4096.0, 1024.0, 4096.0)
  1499. # (X,Y,Z) offset of fractal from world centre in units of 'scale'.
  1500. # Used to move a suitable spawn area of low land close to (0, 0).
  1501. # The default is suitable for mandelbrot sets, it needs to be edited for julia sets.
  1502. # Range roughly -2 to 2. Multiply by 'scale' for offset in nodes.
  1503. # type: v3f
  1504. # mgfractal_offset = (1.79, 0.0, 0.0)
  1505. # W co-ordinate of the generated 3D slice of a 4D fractal.
  1506. # Determines which 3D slice of the 4D shape is generated.
  1507. # Has no effect on 3D fractals.
  1508. # Range roughly -2 to 2.
  1509. # type: float
  1510. # mgfractal_slice_w = 0.0
  1511. # Julia set only: X component of hypercomplex constant determining julia shape.
  1512. # Range roughly -2 to 2.
  1513. # type: float
  1514. # mgfractal_julia_x = 0.33
  1515. # Julia set only: Y component of hypercomplex constant determining julia shape.
  1516. # Range roughly -2 to 2.
  1517. # type: float
  1518. # mgfractal_julia_y = 0.33
  1519. # Julia set only: Z component of hypercomplex constant determining julia shape.
  1520. # Range roughly -2 to 2.
  1521. # type: float
  1522. # mgfractal_julia_z = 0.33
  1523. # Julia set only: W component of hypercomplex constant determining julia shape.
  1524. # Has no effect on 3D fractals.
  1525. # Range roughly -2 to 2.
  1526. # type: float
  1527. # mgfractal_julia_w = 0.33
  1528. ### Noises
  1529. # Y-level of seabed.
  1530. # type: noise_params
  1531. # mgfractal_np_seabed = -14, 9, (600, 600, 600), 41900, 5, 0.6, 2.0
  1532. # Variation of biome filler depth.
  1533. # type: noise_params
  1534. # mgfractal_np_filler_depth = 0, 1.2, (150, 150, 150), 261, 3, 0.7, 2.0
  1535. # First of 2 3D noises that together define tunnels.
  1536. # type: noise_params
  1537. # mgfractal_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
  1538. # Second of 2 3D noises that together define tunnels.
  1539. # type: noise_params
  1540. # mgfractal_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
  1541. ## Mapgen Valleys
  1542. # Map generation attributes specific to Mapgen Valleys.
  1543. # 'altitude_chill' makes higher elevations colder, which may cause biome issues.
  1544. # 'humid_rivers' modifies the humidity around rivers and in areas where water would tend to pool,
  1545. # it may interfere with delicately adjusted biomes.
  1546. # Flags that are not specified in the flag string are not modified from the default.
  1547. # Flags starting with 'no' are used to explicitly disable them.
  1548. # type: flags possible values: altitude_chill, noaltitude_chill, humid_rivers, nohumid_rivers
  1549. # mg_valleys_spflags = altitude_chill,humid_rivers
  1550. # The altitude at which temperature drops by 20C
  1551. # type: int
  1552. # mgvalleys_altitude_chill = 90
  1553. # Depth below which you'll find large caves.
  1554. # type: int
  1555. # mgvalleys_large_cave_depth = -33
  1556. # Creates unpredictable lava features in caves.
  1557. # These can make mining difficult. Zero disables them. (0-10)
  1558. # type: int
  1559. # mgvalleys_lava_features = 0
  1560. # Depth below which you'll find massive caves.
  1561. # type: int
  1562. # mgvalleys_massive_cave_depth = -256
  1563. # How deep to make rivers
  1564. # type: int
  1565. # mgvalleys_river_depth = 4
  1566. # How wide to make rivers
  1567. # type: int
  1568. # mgvalleys_river_size = 5
  1569. # Creates unpredictable water features in caves.
  1570. # These can make mining difficult. Zero disables them. (0-10)
  1571. # type: int
  1572. # mgvalleys_water_features = 0
  1573. # Controls width of tunnels, a smaller value creates wider tunnels.
  1574. # type: float
  1575. # mgvalleys_cave_width = 0.09
  1576. ### Noises
  1577. # Caves and tunnels form at the intersection of the two noises
  1578. # type: noise_params
  1579. # mgvalleys_np_cave1 = 0, 12, (61, 61, 61), 52534, 3, 0.5, 2.0
  1580. # Caves and tunnels form at the intersection of the two noises
  1581. # type: noise_params
  1582. # mgvalleys_np_cave2 = 0, 12, (67, 67, 67), 10325, 3, 0.5, 2.0
  1583. # The depth of dirt or other filler
  1584. # type: noise_params
  1585. # mgvalleys_np_filler_depth = 0, 1.2, (256, 256, 256), 1605, 3, 0.5, 2.0
  1586. # Massive caves form here.
  1587. # type: noise_params
  1588. # mgvalleys_np_massive_caves = 0, 1, (768, 256, 768), 59033, 6, 0.63, 2.0
  1589. # River noise -- rivers occur close to zero
  1590. # type: noise_params
  1591. # mgvalleys_np_rivers = 0, 1, (256, 256, 256), -6050, 5, 0.6, 2.0
  1592. # Base terrain height
  1593. # type: noise_params
  1594. # mgvalleys_np_terrain_height = -10, 50, (1024, 1024, 1024), 5202, 6, 0.4, 2.0
  1595. # Raises terrain to make valleys around the rivers
  1596. # type: noise_params
  1597. # mgvalleys_np_valley_depth = 5, 4, (512, 512, 512), -1914, 1, 1.0, 2.0
  1598. # Slope and fill work together to modify the heights
  1599. # type: noise_params
  1600. # mgvalleys_np_inter_valley_fill = 0, 1, (256, 512, 256), 1993, 6, 0.8, 2.0
  1601. # Amplifies the valleys
  1602. # type: noise_params
  1603. # mgvalleys_np_valley_profile = 0.6, 0.5, (512, 512, 512), 777, 1, 1.0, 2.0
  1604. # Slope and fill work together to modify the heights
  1605. # type: noise_params
  1606. # mgvalleys_np_inter_valley_slope = 0.5, 0.5, (128, 128, 128), 746, 1, 1.0, 2.0
  1607. ## Advanced
  1608. # Size of chunks to be generated at once by mapgen, stated in mapblocks (16 nodes).
  1609. # type: int
  1610. # chunksize = 5
  1611. # Dump the mapgen debug infos.
  1612. # type: bool
  1613. # enable_mapgen_debug_info = false
  1614. # Maximum number of blocks that can be queued for loading.
  1615. # type: int
  1616. # emergequeue_limit_total = 256
  1617. # Maximum number of blocks to be queued that are to be loaded from file.
  1618. # Set to blank for an appropriate amount to be chosen automatically.
  1619. # type: int
  1620. # emergequeue_limit_diskonly = 32
  1621. # Maximum number of blocks to be queued that are to be generated.
  1622. # Set to blank for an appropriate amount to be chosen automatically.
  1623. # type: int
  1624. # emergequeue_limit_generate = 32
  1625. # Number of emerge threads to use. Make this field blank, or increase this number
  1626. # to use multiple threads. On multiprocessor systems, this will improve mapgen speed greatly
  1627. # at the cost of slightly buggy caves.
  1628. # type: int
  1629. # num_emerge_threads = 1