Guest User

Untitled

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