Advertisement
Guest User

newly

a guest
Jul 22nd, 2012
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.43 KB | None | 0 0
  1. #
  2. # LyTreeHelper's configuration file
  3. #
  4. # About editing this file:
  5. # - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If
  6. # you use an editor like Notepad++ (recommended for Windows users), you
  7. # must configure it to "replace tabs with spaces." In Notepad++, this can
  8. # be changed in Settings > Preferences > Language Menu.
  9. # - Don't get rid of the indents. They are indented so some entries are
  10. # in categories.
  11. # - Lines starting with # are comments and so they are ignored.
  12. #
  13.  
  14. # Should LyTreeHelper use another world's configuration for this world?
  15. # Set copy-from to the name of the world which configuration should be copied.
  16. copy-other-configuration: off
  17. copy-from:
  18.  
  19. # Should LyTreeHelper show the config for this world if the world is loading?
  20. show-config-on-start: false
  21.  
  22. # Should LyTreeHelper add a log entry in the console if a player triggers a command?
  23. show-commands-in-log: false
  24.  
  25. # Should LyTreeHelper use the Permissions plugin?
  26. use-permissions: on
  27.  
  28. # Enables or disables the normal leaves decay in minecraft.
  29. enable-leaves-decay: on
  30. # Enables or disables faster decay of leaves.
  31. enable-faster-decay: on
  32.  
  33. # Let you destroy more leave-blocks at once.
  34. enable-faster-leave-destruction: off
  35. # Enables or disables the full destruction of trees.
  36. enable-full-tree-destruction: on
  37. # Enables or disables the full destruction of the tree wood.
  38. enable-full-wood-destruction: on
  39.  
  40. # Leaveblocks drops their items only if the player harvests the tree from top to bottom
  41. # That means, the block above the harvested block must be air
  42. enable-only-top-down-drops: off
  43.  
  44. # WARNING! Setting this option to on will enable a maximum tree size of 6000 instead of 1800.
  45. # WARNING! If your craftbukkit setup isn't running with enough RAM for this option, it will
  46. # WARNING! cause many errors and force an server restart!
  47. # WARNING! This option is only for experienced users!
  48. enable-high-stack-size: off
  49.  
  50. # Sets the maximum tree size. can be an integer from 0 to 1800.
  51. max-tree-size: 1600
  52.  
  53. # The max. radius which can a tree have. This makes it possible to chop single trees in forests.
  54. # Set the max. tree radius to 0 to enable an endless radius.
  55. # This setting can be an integer from 0 to 50.
  56. max-tree-radius: 5
  57.  
  58. # Should LyTreeHelper remove some money from the player's iConomy account on full destruction of a tree?
  59. # If set to on LyTreeHelper will remove the set amount of money from the players bank account.
  60. # "iconomy-money-on-full-destruction" must be a double value.
  61. enable-iconomy-support: off
  62. iconomy-money-on-full-destruction: 10.0
  63.  
  64. # NOTE: The following 2 options are not working in this version
  65. # Enable apple-drops over time?
  66. # If enabled, LyTreeHelper will cause apple drops from trees over time.
  67. # Don't forget to set the drop chance!
  68. # "apple-drops-over-time-chance" must be a double from 0.0 to 100.0
  69. enable-apple-drops-over-time: on
  70. apple-drops-over-time-chance: 30.0
  71.  
  72. # This option works only if both "enable-full-tree-destruction" and "enable-full-wood-destruction" are set to on/true.
  73. # If you destroy a tree, one creature in this list will spawn at the location of the destroyed tree.
  74. # Possible items for the list are:
  75. # CREEPER, SKELETON, ZOMBIE, PIGZOMBIE, GHAST, SPIDER, PIG, CHICKEN, COW, SHEEP
  76. # Example list: creatures-to-spawn-in-trees: [PIG,COW,SPIDER]
  77. # If you want to change the chance of spawning a creature, use the "creature-spawn-chance" option below.
  78. # "creature-spawn-chance" must be a double from 0.0 to 100.0
  79. creatures-to-spawn-in-trees: [SPIDER]
  80. creature-spawn-chance: 30.0
  81.  
  82. # Lists below this comment may match this example:
  83. # full-destruction-tools: [283,284,285,286]
  84. # An empty list means, that all tools can be used.
  85.  
  86. # Tools which can be used for full destruction of trees.
  87. full-destruction-tools: [279,286]
  88.  
  89. # Tools which can be used to harvest leave-blocks and apples.
  90. harvest-tools: []
  91.  
  92. # The following options can be a decimal number from 0.0 to 100.0
  93. # Use this settings to modify the drop chance of apples, golden apples, leave blocks and saplings.
  94. apple-drop-chance: 1.0
  95. golden-apple-drop-chance: 0.1
  96. leaves-block-drop-chance: 5.0
  97. sapling-drop-chance: 8.0
  98.  
  99. # Custom Drops
  100. # Custom drops must match the following mask
  101. # "itemId": dropChance
  102. #
  103. # itemId is the id of the item which should be dropped.
  104. # dropChance can be a decimal number from 0.0 to 100.0
  105. #
  106. # Example:
  107. # custom-drops:
  108. # "2": 10.0
  109. # "3": 38.2
  110. # "35,14": 5.0 //Red wool
  111. custom-drops:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement