Advertisement
Guest User

Worldguard

a guest
Feb 11th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 4.66 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: 339
  33.     max-claim-volume: 30000
  34.     claim-only-inside-existing-regions: false
  35.     max-region-count-per-player:
  36.         default: 7
  37.     use-creature-spawn-event: true
  38. auto-invincible: false
  39. use-player-move-event: true
  40. host-keys: {}
  41. op-permissions: true
  42. protection:
  43.     item-durability: true
  44.     remove-infinite-stacks: false
  45.     disable-xp-orb-drops: false
  46.     disable-obsidian-generators: false
  47. simulation:
  48.     sponge:
  49.         enable: true
  50.         radius: 3
  51.         redstone: false
  52. default:
  53.     pumpkin-scuba: false
  54.     disable-health-regain: false
  55. physics:
  56.     no-physics-gravel: false
  57.     no-physics-sand: false
  58.     allow-portal-anywhere: false
  59.     disable-water-damage-blocks: []
  60.     vine-like-rope-ladders: false
  61. ignition:
  62.     block-tnt: false
  63.     block-tnt-block-damage: true
  64.     block-lighter: false
  65. fire:
  66.     disable-lava-fire-spread: true
  67.     disable-all-fire-spread: true
  68.     disable-fire-spread-blocks: []
  69.     lava-spread-blocks: []
  70. mobs:
  71.     block-creeper-explosions: false
  72.     block-creeper-block-damage: true
  73.     block-enderdragon-block-damage: true
  74.     block-fireball-explosions: false
  75.     block-fireball-block-damage: true
  76.     anti-wolf-dumbness: false
  77.     disable-enderman-griefing: true
  78.     block-painting-destroy: false
  79.     block-plugin-spawning: true
  80.     block-creature-spawn: []
  81.     block-wither-explosions: false
  82.     block-wither-block-damage: false
  83.     block-wither-skull-explosions: false
  84.     block-wither-skull-block-damage: false
  85.     block-enderdragon-portal-creation: false
  86.     block-item-frame-destroy: false
  87.     block-above-ground-slimes: false
  88.     block-other-explosions: false
  89.     block-zombie-door-destruction: false
  90. player-damage:
  91.     disable-fall-damage: false
  92.     disable-lava-damage: false
  93.     disable-fire-damage: false
  94.     disable-lightning-damage: false
  95.     disable-drowning-damage: false
  96.     disable-suffocation-damage: false
  97.     disable-contact-damage: false
  98.     teleport-on-suffocation: true
  99.     disable-void-damage: true
  100.     teleport-on-void-falling: false
  101.     disable-explosion-damage: false
  102.     disable-mob-damage: false
  103.     disable-death-messages: false
  104. chest-protection:
  105.     enable: false
  106.     disable-off-check: false
  107. crops:
  108.     disable-creature-trampling: false
  109.     disable-player-trampling: false
  110. weather:
  111.     prevent-lightning-strike-blocks: []
  112.     disable-lightning-strike-fire: false
  113.     disable-thunderstorm: false
  114.     disable-weather: false
  115.     disable-pig-zombification: false
  116.     disable-powered-creepers: false
  117.     always-raining: false
  118.     always-thundering: false
  119. dynamics:
  120.     disable-mushroom-spread: false
  121.     disable-ice-melting: false
  122.     disable-snow-melting: false
  123.     disable-snow-formation: false
  124.     disable-ice-formation: false
  125.     disable-leaf-decay: false
  126.     disable-grass-growth: false
  127.     disable-mycelium-spread: false
  128.     disable-vine-growth: false
  129. blacklist:
  130.     use-as-whitelist: false
  131.     logging:
  132.         console:
  133.             enable: true
  134.         database:
  135.             enable: false
  136.             dsn: jdbc:mysql://localhost:3306/minecraft
  137.             user: root
  138.             pass: ''
  139.             table: blacklist_events
  140.         file:
  141.             enable: false
  142.             path: worldguard/logs/%Y-%m-%d.log
  143.             open-files: 10
  144. summary-on-start: true
  145. security:
  146.     deop-everyone-on-join: false
  147.     block-in-game-op-command: false
  148. gameplay:
  149.     block-potions: []
  150.     block-potions-overly-reliably: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement