Advertisement
Guest User

Untitled

a guest
May 11th, 2017
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. $ ./bin/minetestserver --config ~/minetest/minetest.conf --world ~/minetest/world.mt
  2. 2017-05-11 18:17:59: WARNING[Main]: Couldn't find a locale directory!
  3. 2017-05-11 18:17:59: [Main]: Supplied world.mt file - stripping it off.
  4. 2017-05-11 18:17:59: ERROR[Main]: ServerError: Failed to initialize world
  5.  
  6. $ cat ~/minetest/world.mt
  7. gameid = minimal
  8. backend = sqlite3
  9. creative_mode = true
  10. enable_damage = true
  11. player_backend = sqlite3
  12. server_announce = false
  13.  
  14. cat ~/minetest/minetest.conf
  15. # This file contains settings of Minetest Game that can be changed in minetest.conf
  16. # By default, all the settings are commented and not functional.
  17. # Uncomment settings by removing the preceding #.
  18.  
  19. # Whether creative mode (fast digging of all blocks, unlimited resources) should be enabled
  20. creative_mode = true
  21.  
  22. # The time in seconds after which the bones of a dead player can be looted by everyone
  23. # 0 to disable
  24. #share_bones_time = 1200
  25.  
  26. # How much earlier the bones of a dead player can be looted by
  27. # everyone if the player dies in a protected area they don't own.
  28. # 0 to disable. By default it is "share_bones_time" divide by four.
  29. #share_bones_time_early = 300
  30.  
  31. # Whether standard fire should be disabled ('basic flame' nodes will disappear)
  32. # 'permanent flame' nodes will remain with either setting
  33. #disable_fire = false
  34.  
  35. # Whether the stuff in initial_stuff should be given to new players
  36. #give_initial_stuff = false
  37. #initial_stuff = default:pick_steel,default:axe_steel,default:shovel_steel,default:torch 99,default:cobble 99
  38.  
  39. # Whether the TNT mod should be enabled
  40. #enable_tnt = <true in singleplayer, false in multiplayer>
  41.  
  42. # The radius of a TNT explosion
  43. #tnt_radius = 3
  44.  
  45. # Enable the stairs mod ABM that replaces the old 'upside down'
  46. # stair and slab nodes in old maps with the new param2 versions.
  47. #enable_stairs_replace_abm = false
  48.  
  49. # Whether you allow respawning in beds
  50. # Default value is true
  51. #enable_bed_respawn = true
  52.  
  53. # Whether players can skip night by sleeping
  54. # Default value is true
  55. #enable_bed_night_skip = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement