Guest User

Untitled

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