Advertisement
Guest User

Untitled

a guest
Aug 18th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 KB | None | 0 0
  1. protect:
  2. # Database settings for sign/rail protection
  3. # get mysql.jar and sqlite and place it in your serverroot/lib directory from here:
  4. # http://java.net/projects/essentials/sources/svn/show/lib?rev=435
  5.  
  6. # mysql, sqlite or none
  7. datatype: 'mysql'
  8.  
  9. # If you specified MySQL above, you MUST enter the appropriate details here.
  10. # If you specified SQLite above, these will be IGNORED.
  11. username: 'thenetherman'
  12. password: 'thenetherman231'
  13. mysqlDb: 'jdbc:mysql://localhost:3306/thenetherman'
  14.  
  15. # For which block types would you like to be alerted?
  16. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  17. alert:
  18. # 10: lava
  19. # 11: still lava
  20. # 46: TNT
  21. on-placement: 10,11,46
  22. on-use:
  23. # 46: TNT
  24. on-break: 46
  25.  
  26. # Users cannot PLACE these types of blocks/items.
  27. # < 255 designates a BLOCK
  28. # > 255 designates an ITEM (Some blocks can be placed as blocks OR items; lava blocks can be placed by lava buckets, for example.)
  29. blacklist:
  30. placement: 327,326,14,56,46,11,10,9,8
  31. usage: 327,326,325
  32.  
  33. #prevent people from breaking blocks
  34. #break: 20,50
  35. break:
  36.  
  37.  
  38. # General physics/behavior modifications
  39. prevent:
  40. lava-flow: false
  41. water-flow: false
  42. water-bucket-flow: false
  43. fire-spread: false
  44. lava-fire-spread: false
  45. flint-fire: false
  46. lightning-fire-spread: true
  47. portal-creation: false
  48. tnt-explosion: false
  49. creeper-explosion: true
  50. creeper-playerdamage: true
  51. creeper-blockdamage: true
  52. # Monsters won't follow players
  53. # permission essentials.protect.entitytarget.bypass disables this
  54. entitytarget: false
  55. # Prevent the spawning of creatures
  56. spawn:
  57. chicken: false
  58. cow: false
  59. creeper: false
  60. ghast: false
  61. giant: false
  62. monster: false
  63. pig: false
  64. pig_zombie: false
  65. sheep: false
  66. skeleton: false
  67. slime: false
  68. spider: false
  69. squid: false
  70. zombie: false
  71. wolf: false
  72.  
  73. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  74. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  75. creeper:
  76. prevent.creeper-explosion: true
  77. max-height: -1
  78.  
  79. # Protect various blocks.
  80. protect:
  81. # Protect all signs
  82. signs: true
  83.  
  84. # Prevent users from destroying rails
  85. rails: true
  86.  
  87. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  88. # This makes it more difficult to circumvent protection, and should be enabled.
  89. # This only has an effect if "rails" or "signs" is also enabled.
  90. block-below: true
  91.  
  92. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  93. prevent-block-on-rails: false
  94.  
  95. # Disable various default physics and behaviors
  96. disable:
  97. # Should fall damage be disabled?
  98. fall: false
  99.  
  100. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  101. # They will be unable to attack users without that same permission node.
  102. pvp: false
  103.  
  104. # Should drowning damage be disabled?
  105. # (Split into two behaviors; generally, you want both set to the same value)
  106. drown: false
  107. suffocate: false
  108.  
  109. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  110. lavadmg: false
  111.  
  112. # Should arrow damage be disabled
  113. projectiles: false
  114.  
  115. # This will disable damage from touching cacti.
  116. contactdmg: false
  117.  
  118. # Burn, baby, burn! Should fire damage be disabled?
  119. firedmg: false
  120.  
  121. # Should the damage after hit by a lightning be disabled?
  122. lightning: false
  123.  
  124. # Should people with build: false in permissions be allowed to build
  125. # Set true to disable building for those people
  126. build: true
  127.  
  128. #Should we tell people they are not allowed to build
  129. warn-on-build-disallow: true
  130.  
  131.  
  132. #disable weather options
  133. weather:
  134. storm: true
  135. thunder: true
  136. lightning: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement