Advertisement
Guest User

Untitled

a guest
Dec 11th, 2011
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.85 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. datatype: 'sqlite'
  12.  
  13. # If you specified MySQL above, you MUST enter the appropriate details here.
  14. # If you specified SQLite above, these will be IGNORED.
  15. username: 'root'
  16. password: 'root'
  17. mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  18.  
  19. # For which block types would you like to be alerted?
  20. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  21. alert:
  22. # 10: lava
  23. # 11: still lava
  24. # 46: TNT
  25. on-placement: 10,11,46
  26. on-use:
  27. # 46: TNT
  28. on-break:
  29.  
  30. # Users cannot PLACE these types of blocks/items.
  31. # < 255 designates a BLOCK
  32. # > 255 designates an ITEM (Some blocks can be placed as blocks OR items; lava blocks can be placed by lava buckets, for example.)
  33. blacklist:
  34. placement: 327,326,14,56,46,11,10,9,8
  35. usage: 327,326,325
  36.  
  37. #prevent people from breaking blocks
  38. #break: 20,50
  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: true
  50. lava-fire-spread: true
  51. flint-fire: false
  52. lightning-fire-spread: true
  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. 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. chicken: false
  70. cow: false
  71. creeper: false
  72. ghast: false
  73. giant: false
  74. monster: false
  75. pig: false
  76. pig_zombie: false
  77. sheep: false
  78. skeleton: false
  79. slime: false
  80. spider: false
  81. squid: false
  82. zombie: false
  83. wolf: false
  84. cave_spider: false
  85. enderman: false
  86. silverfish: false
  87. ender_dragon: false
  88. villager: false
  89. blaze: false
  90. mushroom_cow: false
  91. magma_cube: false
  92. snowman: false
  93.  
  94. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  95. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  96. creeper:
  97. max-height: -1
  98.  
  99. # Protect various blocks.
  100. protect:
  101. # Protect all signs
  102. signs: true
  103.  
  104. # Prevent users from destroying rails
  105. rails: true
  106.  
  107. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  108. # This makes it more difficult to circumvent protection, and should be enabled.
  109. # This only has an effect if "rails" or "signs" is also enabled.
  110. block-below: true
  111.  
  112. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  113. prevent-block-on-rails: false
  114.  
  115. # Store blocks / signs in memory before writing
  116. memstore: false
  117.  
  118. # Disable various default physics and behaviors
  119. disable:
  120. # Should fall damage be disabled?
  121. fall: false
  122.  
  123. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  124. # They will be unable to attack users without that same permission node.
  125. pvp: false
  126.  
  127. # Should drowning damage be disabled?
  128. # (Split into two behaviors; generally, you want both set to the same value)
  129. drown: false
  130. suffocate: false
  131.  
  132. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  133. lavadmg: false
  134.  
  135. # Should arrow damage be disabled
  136. projectiles: false
  137.  
  138. # This will disable damage from touching cacti.
  139. contactdmg: false
  140.  
  141. # Burn, baby, burn! Should fire damage be disabled?
  142. firedmg: false
  143.  
  144. # Should the damage after hit by a lightning be disabled?
  145. lightning: false
  146.  
  147. # Should people with build: false in permissions be allowed to build
  148. # Set true to disable building for those people
  149. build: true
  150.  
  151. # Should people with build: false in permissions be allowed to use items
  152. # Set true to disable useing for those people
  153. use: true
  154.  
  155. # Should we tell people they are not allowed to build
  156. warn-on-build-disallow: true
  157.  
  158.  
  159. # Disable weather options
  160. weather:
  161. storm: false
  162. thunder: false
  163. lightning: false
  164.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement