Advertisement
Guest User

Untitled

a guest
Oct 19th, 2012
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 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. sql:
  25. use: false
  26. dsn: jdbc:mysql://localhost/worldguard
  27. username: worldguard
  28. password: worldguard
  29. enable: true
  30. invincibility-removes-mobs: false
  31. high-frequency-flags: false
  32. wand: 287
  33. max-claim-volume: 30000
  34. claim-only-inside-existing-regions: false
  35. max-region-count-per-player:
  36. default: 7
  37. auto-invincible: false
  38. use-player-move-event: true
  39. host-keys: {}
  40. op-permissions: true
  41. protection:
  42. item-durability: true
  43. remove-infinite-stacks: false
  44. disable-xp-orb-drops: false
  45. disable-obsidian-generators: false
  46. simulation:
  47. sponge:
  48. enable: true
  49. radius: 3
  50. redstone: false
  51. default:
  52. pumpkin-scuba: false
  53. disable-health-regain: false
  54. physics:
  55. no-physics-gravel: false
  56. no-physics-sand: false
  57. allow-portal-anywhere: false
  58. disable-water-damage-blocks: []
  59. ignition:
  60. block-tnt: true
  61. block-tnt-block-damage: true
  62. block-lighter: true
  63. fire:
  64. disable-lava-fire-spread: false
  65. disable-all-fire-spread: false
  66. disable-fire-spread-blocks: []
  67. lava-spread-blocks: []
  68. mobs:
  69. block-creeper-explosions: true
  70. block-creeper-block-damage: true
  71. block-enderdragon-block-damage: false
  72. block-fireball-explosions: true
  73. block-fireball-block-damage: true
  74. anti-wolf-dumbness: false
  75. disable-enderman-griefing: true
  76. block-painting-destroy: false
  77. block-plugin-spawning: true
  78. block-creature-spawn: []
  79. player-damage:
  80. disable-fall-damage: false
  81. disable-lava-damage: false
  82. disable-fire-damage: false
  83. disable-lightning-damage: true
  84. disable-drowning-damage: false
  85. disable-suffocation-damage: false
  86. disable-contact-damage: false
  87. teleport-on-suffocation: false
  88. disable-void-damage: false
  89. teleport-on-void-falling: false
  90. disable-explosion-damage: false
  91. disable-mob-damage: false
  92. disable-death-messages: false
  93. chest-protection:
  94. enable: false
  95. disable-off-check: false
  96. crops:
  97. disable-creature-trampling: false
  98. disable-player-trampling: true
  99. weather:
  100. prevent-lightning-strike-blocks: []
  101. disable-lightning-strike-fire: false
  102. disable-thunderstorm: false
  103. disable-weather: false
  104. disable-pig-zombification: false
  105. disable-powered-creepers: false
  106. always-raining: false
  107. always-thundering: false
  108. dynamics:
  109. disable-mushroom-spread: false
  110. disable-ice-melting: false
  111. disable-snow-melting: false
  112. disable-snow-formation: false
  113. disable-ice-formation: false
  114. disable-leaf-decay: false
  115. disable-grass-growth: false
  116. blacklist:
  117. use-as-whitelist: false
  118. logging:
  119. console:
  120. enable: true
  121. database:
  122. enable: false
  123. dsn: jdbc:mysql://localhost:3306/minecraft
  124. user: root
  125. pass: ''
  126. table: blacklist_events
  127. file:
  128. enable: false
  129. path: worldguard/logs/%Y-%m-%d.log
  130. open-files: 10
  131. summary-on-start: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement