Advertisement
Guest User

VeinMiner general.cfg

a guest
Jul 24th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.40 KB | None | 0 0
  1. # Configuration file
  2.  
  3. ##########################################################################################################
  4. # autodetect
  5. #--------------------------------------------------------------------------------------------------------#
  6. # Autodetect items and blocks during game start-up.
  7. ##########################################################################################################
  8.  
  9. autodetect {
  10. # Autodetect blocks with the below prefixes in the ore dictionary, adding the names to the axe list. [default: true]
  11. B:autodetect.blocks.axe.enable=true
  12.  
  13. # List of prefixes to autodetect as blocks to be used with a axe.
  14. # Separate with ',' [default: 'log,treeLeaves']
  15. S:autodetect.blocks.axe.prefixes=log,treeLeaves
  16.  
  17. # Autodetect blocks with the below prefixes in the ore dictionary, adding the names to the hoe list. [default: false]
  18. B:autodetect.blocks.hoe.enable=false
  19.  
  20. # List of prefixes to autodetect as blocks to be used with a hoe.
  21. # Separate with ',' [default: '']
  22. S:autodetect.blocks.hoe.prefixes=
  23.  
  24. # Autodetect blocks with the below prefixes in the ore dictionary, adding the names to the pickaxe list. [default: true]
  25. B:autodetect.blocks.pickaxe.enable=true
  26.  
  27. # List of prefixes to autodetect as blocks to be used with a pickaxe.
  28. # Separate with ',' [default: 'ore']
  29. S:autodetect.blocks.pickaxe.prefixes=ore
  30.  
  31. # Autodetect blocks with the below prefixes in the ore dictionary, adding the names to the shears list. [default: true]
  32. B:autodetect.blocks.shears.enable=true
  33.  
  34. # List of prefixes to autodetect as blocks to be used with a shears.
  35. # Separate with ',' [default: 'treeLeaves']
  36. S:autodetect.blocks.shears.prefixes=treeLeaves
  37.  
  38. # Autodetect blocks with the below prefixes in the ore dictionary, adding the names to the shovel list. [default: false]
  39. B:autodetect.blocks.shovel.enable=false
  40.  
  41. # List of prefixes to autodetect as blocks to be used with a shovel.
  42. # Separate with ',' [default: '']
  43. S:autodetect.blocks.shovel.prefixes=clay,sand,gravel
  44. }
  45.  
  46.  
  47. ##########################################################################################################
  48. # client
  49. #--------------------------------------------------------------------------------------------------------#
  50. # These settings are used client side, so they have no impact on servers.
  51. ##########################################################################################################
  52.  
  53. client {
  54. # What mode should the client use when joining a game.
  55. # Valid modes: [default: pressed]
  56. # 'disabled' = don't enable, even when keybind pressed
  57. # 'pressed' = enables when keybind is pressed
  58. # 'released' = enables when keybind is released
  59. # 'sneak' = enables when sneaking (ignores keybind)
  60. # 'no_sneak' = enables when not sneaking (ignores keybind)
  61. S:client.preferredMode=pressed
  62. }
  63.  
  64.  
  65. limit {
  66. # Limit of blocks to be destroyed at once. Use -1 for infinite. [range: -1 to 2147483647, default: 800]
  67. I:limit.blocks=800
  68.  
  69. # Maximum number of blocks to be removed per game tick (1/20 seconds). Using a low number will keep the game from getting huge performance drops but also decreases the speed at which blocks are destroyed. [range: 1 ~ 1000, default: 10]
  70. I:limit.blocksPerTick=10
  71.  
  72. # Maximum distance from the first block to search for blocks to destroy. [range: -1 to 1000, default: 20]
  73. I:limit.radius=20
  74. }
  75.  
  76.  
  77. misc {
  78. # Block IDs (with metadata) to consider equivalent.
  79. # Names are formatted like 'modName:block_name/metadata'. Separate names (with metadata) with ','. Use 'minecraft' as the mod name for vanilla blocks.
  80. # [default: 'minecraft:redstone_ore=minecraft:lit_redstone_ore']
  81. S:equalBlocks=minecraft:lit_redstone_ore=minecraft:redstone_ore
  82.  
  83. # Change how much experience is required to Veinmine and how much experience each block uses. [range: 0 to 2147483647, default: 0]
  84. I:expmodifier=0
  85.  
  86. # Change how much additional hunger/exhaustion is used for every block. Every point is 0.025 hunger/exhaustion per block. [range: 0 to 2147483647, default: 0]
  87. I:hungermodifier=0
  88. }
  89.  
  90.  
  91. overrides {
  92. # Mine all blocks with all registered tools that can harvest blocks.
  93. B:override.allBlocks=false
  94.  
  95. # Allow all tools, including the open hand, to be used to mine blocks.
  96. B:override.allTools=false
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement