Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  1. #########################
  2. ##### LumberJack #####
  3. #########################
  4.  
  5. #
  6. # LumberJack provides the /lumberjack command, that toggles
  7. # tree gravity per player. Players need the lumberjack.use permission.
  8. # When a player has the lumberjack.force permission, they cannot
  9. # disable tree gravity.
  10. #
  11. # Aliases for /lumberjack:
  12. # - /treegravity
  13. # - /gravity
  14. # - /tg
  15. #
  16.  
  17. # Whether gravity is enabled by default for new players
  18. # Hint: To force players using gravity, give them
  19. # the lumberjack.force permission
  20. gravity-enabled-by-default: true
  21.  
  22. # When enabled, tree gravity will only apply when the
  23. # player used an axe to break the log.
  24. must-use-axe: false
  25.  
  26. # Whether logs attached at the side or diagonally of the tree trunk
  27. # should also fall down
  28. attached-logs-fall-down: true
  29.  
  30. # Prevents the placement of torches or other non-solid
  31. # blocks inside or under falling logs.
  32. # Also prevents the logs from starting to fall down
  33. # when the first block below the log (except air)
  34. # is not solid.
  35. prevent-torch-exploit: true
  36.  
  37. # when set to true, players with gravity DISABLED will be
  38. # shown a message on how to enable tree gravity
  39. # when they break a log for the first time.
  40. # consider setting this to true when you disable gravity by default.
  41. # see also -> message-when-breaking-log
  42. show-message-when-breaking-log: true
  43.  
  44. # when set to true, players with gravity ENABLED will be
  45. # shown a message on how to disable tree gravity
  46. # when they break a log for the first time.
  47. # consider setting this to true when you enable gravity by default.
  48. # see also -> message-when-breaking-log2
  49. show-message-when-breaking-log-and-gravity-is-enabled: false
  50.  
  51. # when set to true, the messages are shown again when a player
  52. # logs out and back in and then breaks a log again.
  53. show-message-again-after-logout: true
  54.  
  55. # should we check for updates?
  56. # when enabled, a message is printed in the console if a new
  57. # version has been found, and OPs will be notified when they
  58. # join the server
  59. # When set to true, we will check for updates on startup and every 24 hours
  60. # When set to on-startup, we will only check on startup
  61. # When set to false, don't check for updates
  62. check-for-updates: true
  63.  
  64. #########################
  65. ##### tree blocks ######
  66. #########################
  67.  
  68. # You can set the blocks that will be counted as tree part
  69. # Default is all types of logs, wood, stripped log and stripped wood
  70. tree-blocks:
  71. - ACACIA_LOG
  72. - ACACIA_WOOD
  73. - BIRCH_LOG
  74. - BIRCH_WOOD
  75. - DARK_OAK_LOG
  76. - DARK_OAK_WOOD
  77. - JUNGLE_LOG
  78. - JUNGLE_WOOD
  79. - OAK_LOG
  80. - OAK_WOOD
  81. - SPRUCE_LOG
  82. - SPRUCE_WOOD
  83. - STRIPPED_ACACIA_LOG
  84. - STRIPPED_ACACIA_WOOD
  85. - STRIPPED_BIRCH_LOG
  86. - STRIPPED_BIRCH_WOOD
  87. - STRIPPED_DARK_OAK_LOG
  88. - STRIPPED_DARK_OAK_WOOD
  89. - STRIPPED_JUNGLE_LOG
  90. - STRIPPED_JUNGLE_WOOD
  91. - STRIPPED_OAK_LOG
  92. - STRIPPED_OAK_WOOD
  93. - STRIPPED_SPRUCE_LOG
  94. - STRIPPED_SPRUCE_WOOD
  95.  
  96. # If the tree does not stand on one of the following blocks,
  97. # it will not be counted as a tree.
  98. tree-ground-blocks:
  99. - GRASS_BLOCK
  100. - DIRT
  101. - COARSE_DIRT
  102. - MYCELIUM
  103.  
  104. #### THIS WILL BE IMPLEMENTED LATER ####
  105. # Parts of the tree that will be counted as leaves
  106. #### THIS WILL BE IMPLEMENTED LATER ####
  107. tree-leaves-blocks:
  108. - ACACIA_LEAVES
  109. - BIRCH_LEAVES
  110. - DARK_OAK_LEAVES
  111. - JUNGLE_LEAVES
  112. - OAK_LEAVES
  113. - SPRUCE_LEAVES
  114.  
  115. #### THIS WILL BE IMPLEMENTED LATER ####
  116. # Minimum number of leaves that have to be present per log.
  117. # E.g. 0.1 means there has to be at least one block of leaves for every ten logs
  118. #### THIS WILL BE IMPLEMENTED LATER ####
  119. min-leaves-per-log-ratio: 0.1
  120.  
  121. # Maximum number of air blocks that can be inside the tree trunk
  122. # If more than the specificied number of air blocks are present inside the trunk,
  123. # it will not be counted as a tree
  124. max-air-in-trunk: 1
  125.  
  126. #########################
  127. ##### localization ######
  128. #########################
  129.  
  130. # Available color codes:
  131. # &0 Black &6 Gold &c Red
  132. # &1 Dark Blue &7 Gray &d Light Purple
  133. # &2 Dark Green &8 Dark Gray &e Yellow
  134. # &3 Dark Aqua &9 Blue &f White
  135. # &4 Dark Red &a Green
  136. # &5 Dark Purple &b Aqua
  137.  
  138. # Available formatting codes:
  139. # &k Obfuscated &m Strikethrough
  140. # &l Bold &o Italic
  141. # &n Underline &r Reset
  142.  
  143. ##### English
  144. message-gravity-enabled: "&7Tree gravity has been &aenabled&7."
  145. message-gravity-disabled: "&7Tree gravity has been &cdisabled&7."
  146. message-when-breaking-log: "&7Hint: Type &6/lumberjack&7 to enable tree gravity."
  147. message-when-breaking-log2: "&7Hint: Type &6/lumberjack&7 to disable tree gravity."
  148. message-can-not-disable: "&cYou are not allowed to disable tree gravity."
  149.  
  150. ##### French
  151. #message-gravity-enabled: "&7La gravité d'arbre a été &aactivée&7."
  152. #message-gravity-disabled: "&7La gravité d'arbre a été &cdésactivée&7."
  153. #message-when-breaking-log: "&7Astuce: écris &6/lumberjack&7 pour activer la gravité d'arbre."
  154. #message-when-breaking-log2: "&7Astuce: écris &6/lumberjack&7 pour désactiver la gravité d'arbre."
  155. #message-can-not-disable: "&cVous n'avez pas la permission de désactiver la gravité d'arbre."
  156.  
  157. #########################
  158. ##### Done! #####
  159. #########################
  160.  
  161. # please do not change the following line manually!
  162. config-version: 6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement