Advertisement
Guest User

Worldguard Config

a guest
Feb 9th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.67 KB | None | 0 0
  1. #
  2. # WorldGuard's main configuration file
  3. #
  4. # This is the global configuration file. Anything placed into here will
  5. # be applied to all worlds. However, each world has its own configuration
  6. # file to allow you to replace most settings in here for that world only.
  7. #
  8. # About editing this file:
  9. # - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If
  10. # you use an editor like Notepad++ (recommended for Windows users), you
  11. # must configure it to "replace tabs with spaces." In Notepad++, this can
  12. # be changed in Settings > Preferences > Language Menu.
  13. # - Don't get rid of the indents. They are indented so some entries are
  14. # in categories (like "enforce-single-session" is in the "protection"
  15. # category.
  16. # - If you want to check the format of this file before putting it
  17. # into WorldGuard, paste it into http://yaml-online-parser.appspot.com/
  18. # and see if it gives "ERROR:".
  19. # - Lines starting with # are comments and so they are ignored.
  20. #
  21.  
  22. regions:
  23. use-scheduler: true
  24. use-creature-spawn-event: true
  25. sql:
  26. use: false
  27. dsn: jdbc:mysql://localhost/worldguard
  28. username: worldguard
  29. password: worldguard
  30. enable: true
  31. invincibility-removes-mobs: false
  32. high-frequency-flags: false
  33. wand: 334
  34. max-claim-volume: 30000
  35. claim-only-inside-existing-regions: false
  36. max-region-count-per-player:
  37. default: 7
  38. auto-invincible: false
  39. use-player-move-event: true
  40. security:
  41. deop-everyone-on-join: false
  42. block-in-game-op-command: false
  43. host-keys: {}
  44. summary-on-start: true
  45. op-permissions: true
  46. protection:
  47. item-durability: true
  48. remove-infinite-stacks: false
  49. disable-xp-orb-drops: false
  50. disable-obsidian-generators: false
  51. gameplay:
  52. block-potions: []
  53. block-potions-overly-reliably: false
  54. simulation:
  55. sponge:
  56. enable: true
  57. radius: 3
  58. redstone: false
  59. default:
  60. pumpkin-scuba: false
  61. disable-health-regain: false
  62. physics:
  63. no-physics-gravel: false
  64. no-physics-sand: false
  65. vine-like-rope-ladders: false
  66. allow-portal-anywhere: false
  67. disable-water-damage-blocks: []
  68. ignition:
  69. block-tnt: false
  70. block-tnt-block-damage: false
  71. block-lighter: false
  72. fire:
  73. disable-lava-fire-spread: true
  74. disable-all-fire-spread: true
  75. disable-fire-spread-blocks: []
  76. lava-spread-blocks: []
  77. mobs:
  78. block-creeper-explosions: false
  79. block-creeper-block-damage: false
  80. block-wither-explosions: false
  81. block-wither-block-damage: false
  82. block-wither-skull-explosions: false
  83. block-wither-skull-block-damage: false
  84. block-enderdragon-block-damage: false
  85. block-enderdragon-portal-creation: false
  86. block-fireball-explosions: false
  87. block-fireball-block-damage: false
  88. anti-wolf-dumbness: false
  89. disable-enderman-griefing: false
  90. block-painting-destroy: false
  91. block-item-frame-destroy: false
  92. block-plugin-spawning: false
  93. block-above-ground-slimes: false
  94. block-other-explosions: false
  95. block-zombie-door-destruction: false
  96. block-creature-spawn:
  97. - false
  98. player-damage:
  99. disable-fall-damage: false
  100. disable-lava-damage: false
  101. disable-fire-damage: false
  102. disable-lightning-damage: false
  103. disable-drowning-damage: false
  104. disable-suffocation-damage: false
  105. disable-contact-damage: false
  106. teleport-on-suffocation: false
  107. disable-void-damage: false
  108. teleport-on-void-falling: false
  109. disable-explosion-damage: false
  110. disable-mob-damage: false
  111. disable-death-messages: false
  112. chest-protection:
  113. enable: false
  114. disable-off-check: false
  115. crops:
  116. disable-creature-trampling: false
  117. disable-player-trampling: false
  118. weather:
  119. prevent-lightning-strike-blocks: []
  120. disable-lightning-strike-fire: false
  121. disable-thunderstorm: false
  122. disable-weather: false
  123. disable-pig-zombification: false
  124. disable-powered-creepers: false
  125. always-raining: false
  126. always-thundering: false
  127. dynamics:
  128. disable-mushroom-spread: false
  129. disable-ice-melting: false
  130. disable-snow-melting: false
  131. disable-snow-formation: false
  132. disable-ice-formation: false
  133. disable-leaf-decay: false
  134. disable-grass-growth: false
  135. disable-mycelium-spread: false
  136. disable-vine-growth: false
  137. blacklist:
  138. use-as-whitelist: false
  139. logging:
  140. console:
  141. enable: true
  142. database:
  143. enable: false
  144. dsn: jdbc:mysql://localhost:3306/minecraft
  145. user: root
  146. pass: ''
  147. table: blacklist_events
  148. file:
  149. enable: false
  150. path: worldguard/logs/%Y-%m-%d.log
  151. open-files: 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement