Advertisement
Guest User

Untitled

a guest
Apr 21st, 2013
650
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.21 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. # General physics/behavior modifications
  22. prevent:
  23. lava-flow: false
  24. water-flow: false
  25. water-bucket-flow: false
  26. fire-spread: true
  27. lava-fire-spread: true
  28. flint-fire: false
  29. lightning-fire-spread: true
  30. portal-creation: true
  31. tnt-explosion: false
  32. tnt-playerdamage: false
  33. fireball-explosion: false
  34. fireball-fire: false
  35. fireball-playerdamage: false
  36. witherskull-explosion: false
  37. witherskull-playerdamage: false
  38. wither-spawnexplosion: false
  39. wither-blockreplace: false
  40. creeper-explosion: false
  41. creeper-playerdamage: false
  42. creeper-blockdamage: true
  43. enderdragon-blockdamage: true
  44. enderman-pickup: false
  45. villager-death: false
  46. # Monsters won't follow players
  47. # permission essentials.protect.entitytarget.bypass disables this
  48. entitytarget: true
  49. # Prevent the spawning of creatures
  50. spawn:
  51. creeper: false
  52. skeleton: false
  53. spider: false
  54. giant: false
  55. zombie: false
  56. slime: false
  57. ghast: false
  58. pig_zombie: false
  59. enderman: false
  60. cave_spider: false
  61. silverfish: false
  62. blaze: false
  63. magma_cube: false
  64. ender_dragon: false
  65. pig: false
  66. sheep: false
  67. cow: false
  68. chicken: false
  69. squid: false
  70. wolf: false
  71. mushroom_cow: false
  72. snowman: false
  73. ocelot: false
  74. iron_golem: false
  75. villager: false
  76. wither: false
  77. bat: false
  78. witch: false
  79.  
  80. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  81. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  82. creeper:
  83. max-height: -1
  84.  
  85. # Protect various blocks.
  86. protect:
  87. # Protect all signs
  88. signs: false
  89.  
  90. # Prevent users from destroying rails
  91. rails: true
  92.  
  93. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  94. # This makes it more difficult to circumvent protection, and should be enabled.
  95. # This only has an effect if "rails" or "signs" is also enabled.
  96. block-below: true
  97.  
  98. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  99. prevent-block-on-rails: false
  100.  
  101. # Store blocks / signs in memory before writing
  102. memstore: false
  103.  
  104. # Disable various default physics and behaviors
  105. disable:
  106. # Should fall damage be disabled?
  107. fall: false
  108.  
  109. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  110. # They will be unable to attack users without that same permission node.
  111. pvp: false
  112.  
  113. # Should drowning damage be disabled?
  114. # (Split into two behaviors; generally, you want both set to the same value)
  115. drown: false
  116. suffocate: false
  117.  
  118. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  119. lavadmg: false
  120.  
  121. # Should arrow damage be disabled
  122. projectiles: false
  123.  
  124. # This will disable damage from touching cacti.
  125. contactdmg: false
  126.  
  127. # Burn, baby, burn! Should fire damage be disabled?
  128. firedmg: false
  129.  
  130. # Should the damage after hit by a lightning be disabled?
  131. lightning: false
  132.  
  133. # Should Wither damage be disabled?
  134. wither: false
  135.  
  136. # Disable weather options
  137. weather:
  138. storm: false
  139. thunder: false
  140. lightning: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement