Guest User

Untitled

a guest
Dec 9th, 2018
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.96 KB | None | 0 0
  1.  
  2. ############################################################
  3. # +------------------------------------------------------+ #
  4. # | EssentialsProtect | #
  5. # +------------------------------------------------------+ #
  6. ############################################################
  7.  
  8. protect:
  9. # Database settings for sign/rail protection
  10.  
  11. # mysql or sqlite
  12. # We strongly recommend against using mysql here, unless you have a good reason.
  13. # Sqlite seems to be faster in almost all cases, and in some cases mysql can be much slower.
  14. datatype: 'sqlite'
  15.  
  16. # If you specified MySQL above, you MUST enter the appropriate details here.
  17. # If you specified SQLite above, these will be IGNORED.
  18. username: 'root'
  19. password: 'root'
  20. mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  21.  
  22. # For which block types would you like to be alerted?
  23. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  24. # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  25. alert:
  26. on-placement: 10,11,46,327
  27. on-use: 327
  28. on-break:
  29.  
  30. blacklist:
  31.  
  32. # Which blocks should people be prevented from placing
  33. placement: 10,11,46,327
  34.  
  35. # Which items should people be prevented from using
  36. usage: 327
  37.  
  38. # Which blocks should people be prevented from breaking
  39. break:
  40.  
  41. # Which blocks should not be pushed by pistons
  42. piston:
  43.  
  44. # General physics/behavior modifications
  45. prevent:
  46. lava-flow: false
  47. water-flow: false
  48. water-bucket-flow: false
  49. fire-spread: false
  50. lava-fire-spread: false
  51. flint-fire: false
  52. lightning-fire-spread: false
  53. portal-creation: false
  54. tnt-explosion: false
  55. tnt-playerdamage: false
  56. fireball-explosion: false
  57. fireball-fire: false
  58. fireball-playerdamage: false
  59. creeper-explosion: false
  60. creeper-playerdamage: false
  61. creeper-blockdamage: false
  62. enderdragon-blockdamage: true
  63. enderman-pickup: false
  64. villager-death: false
  65. # Monsters won't follow players
  66. # permission essentials.protect.entitytarget.bypass disables this
  67. entitytarget: false
  68. # Prevent the spawning of creatures
  69. spawn:
  70. creeper: false
  71. skeleton: false
  72. spider: false
  73. giant: false
  74. zombie: false
  75. slime: false
  76. ghast: false
  77. pig_zombie: false
  78. enderman: false
  79. cave_spider: false
  80. silverfish: false
  81. blaze: false
  82. magma_cube: false
  83. ender_dragon: false
  84. pig: false
  85. sheep: false
  86. cow: false
  87. chicken: false
  88. squid: false
  89. wolf: false
  90. mushroom_cow: false
  91. snowman: false
  92. ocelot: false
  93. iron_golem: false
  94. villager: false
  95.  
  96. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  97. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  98. creeper:
  99. max-height: -1
  100.  
  101. # Protect various blocks.
  102. protect:
  103. # Protect all signs
  104. signs: true
  105.  
  106. # Prevent users from destroying rails
  107. rails: true
  108.  
  109. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  110. # This makes it more difficult to circumvent protection, and should be enabled.
  111. # This only has an effect if "rails" or "signs" is also enabled.
  112. block-below: true
  113.  
  114. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  115. prevent-block-on-rails: false
  116.  
  117. # Store blocks / signs in memory before writing
  118. memstore: false
  119.  
  120. # Disable various default physics and behaviors
  121. disable:
  122. # Should fall damage be disabled?
  123. fall: false
  124.  
  125. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  126. # They will be unable to attack users without that same permission node.
  127. pvp: false
  128.  
  129. # Should drowning damage be disabled?
  130. # (Split into two behaviors; generally, you want both set to the same value)
  131. drown: false
  132. suffocate: false
  133.  
  134. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  135. lavadmg: false
  136.  
  137. # Should arrow damage be disabled
  138. projectiles: false
  139.  
  140. # This will disable damage from touching cacti.
  141. contactdmg: false
  142.  
  143. # Burn, baby, burn! Should fire damage be disabled?
  144. firedmg: false
  145.  
  146. # Should the damage after hit by a lightning be disabled?
  147. lightning: false
  148.  
  149. # Should people with build: false in permissions be allowed to build
  150. # Set true to disable building for those people
  151. build: true
  152.  
  153. # Should people with build: false in permissions be allowed to use items
  154. # Set true to disable using for those people
  155. use: true
  156.  
  157. # Should we tell people they are not allowed to build
  158. warn-on-build-disallow: true
  159.  
  160. # Disable weather options
  161. weather:
  162. storm: false
  163. thunder: false
  164. lightning: false
Add Comment
Please, Sign In to add comment