Advertisement
Guest User

WorldGuard config.yml

a guest
Mar 4th, 2012
2,439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.96 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-permission: true
  38. auto-invincible: true
  39. use-player-move-event: true
  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: true
  65.     disable-all-fire-spread: true
  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-creature-spawn: []
  77. player-damage:
  78.     disable-fall-damage: false
  79.     disable-lava-damage: false
  80.     disable-fire-damage: false
  81.     disable-lightning-damage: false
  82.     disable-drowning-damage: false
  83.     disable-suffocation-damage: false
  84.     disable-contact-damage: false
  85.     teleport-on-suffocation: false
  86.     disable-void-damage: false
  87.     teleport-on-void-falling: false
  88.     disable-explosion-damage: false
  89.     disable-mob-damage: false
  90.     disable-death-messages: false
  91. chest-protection:
  92.     enable: false
  93.     disable-off-check: false
  94. crops:
  95.     disable-creature-trampling: true
  96.     disable-player-trampling: true
  97. weather:
  98.     prevent-lightning-strike-blocks: []
  99.     disable-lightning-strike-fire: true
  100.     disable-thunderstorm: false
  101.     disable-weather: false
  102.     disable-pig-zombification: false
  103.     disable-powered-creepers: false
  104.     always-raining: false
  105.     always-thundering: false
  106. dynamics:
  107.     disable-mushroom-spread: false
  108.     disable-ice-melting: false
  109.     disable-snow-melting: false
  110.     disable-snow-formation: false
  111.     disable-ice-formation: false
  112.     disable-leaf-decay: false
  113.     disable-grass-growth: false
  114. blacklist:
  115.     use-as-whitelist: false
  116.     logging:
  117.         console:
  118.             enable: true
  119.         database:
  120.             enable: false
  121.             dsn: jdbc:mysql://localhost:3306/minecraft
  122.             user: root
  123.             pass: ''
  124.             table: blacklist_events
  125.         file:
  126.             enable: false
  127.             path: worldguard/logs/%Y-%m-%d.log
  128.             open-files: 10
  129. summary-on-start: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement