Advertisement
Guest User

config

a guest
Feb 9th, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.65 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: 0
  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: true
  43. host-keys: {}
  44. summary-on-start: true
  45. op-permissions: true
  46. protection:
  47.     item-durability: true
  48.     remove-infinite-stacks: true
  49.     disable-xp-orb-drops: false
  50.     disable-obsidian-generators: true
  51. gameplay:
  52.     block-potions: []
  53.     block-potions-overly-reliably: false
  54. simulation:
  55.     sponge:
  56.         enable: false
  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: true
  67.     disable-water-damage-blocks: []
  68. ignition:
  69.     block-tnt: false
  70.     block-tnt-block-damage: true
  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: true
  80.     block-wither-explosions: false
  81.     block-wither-block-damage: true
  82.     block-wither-skull-explosions: false
  83.     block-wither-skull-block-damage: true
  84.     block-enderdragon-block-damage: false
  85.     block-enderdragon-portal-creation: false
  86.     block-fireball-explosions: false
  87.     block-fireball-block-damage: true
  88.     anti-wolf-dumbness: false
  89.     disable-enderman-griefing: true
  90.     block-painting-destroy: false
  91.     block-item-frame-destroy: false
  92.     block-plugin-spawning: true
  93.     block-above-ground-slimes: false
  94.     block-other-explosions: false
  95.     block-zombie-door-destruction: false
  96.     block-creature-spawn: []
  97. player-damage:
  98.     disable-fall-damage: false
  99.     disable-lava-damage: false
  100.     disable-fire-damage: false
  101.     disable-lightning-damage: false
  102.     disable-drowning-damage: false
  103.     disable-suffocation-damage: false
  104.     disable-contact-damage: false
  105.     teleport-on-suffocation: false
  106.     disable-void-damage: false
  107.     teleport-on-void-falling: false
  108.     disable-explosion-damage: false
  109.     disable-mob-damage: false
  110.     disable-death-messages: false
  111. chest-protection:
  112.     enable: false
  113.     disable-off-check: false
  114. crops:
  115.     disable-creature-trampling: false
  116.     disable-player-trampling: false
  117. weather:
  118.     prevent-lightning-strike-blocks: []
  119.     disable-lightning-strike-fire: false
  120.     disable-thunderstorm: false
  121.     disable-weather: false
  122.     disable-pig-zombification: false
  123.     disable-powered-creepers: false
  124.     always-raining: false
  125.     always-thundering: false
  126. dynamics:
  127.     disable-mushroom-spread: false
  128.     disable-ice-melting: false
  129.     disable-snow-melting: false
  130.     disable-snow-formation: false
  131.     disable-ice-formation: false
  132.     disable-leaf-decay: false
  133.     disable-grass-growth: false
  134.     disable-mycelium-spread: false
  135.     disable-vine-growth: false
  136. blacklist:
  137.     use-as-whitelist: false
  138.     logging:
  139.         console:
  140.             enable: true
  141.         database:
  142.             enable: false
  143.             dsn: jdbc:mysql://localhost:3306/minecraft
  144.             user: root
  145.             pass: ''
  146.             table: blacklist_events
  147.         file:
  148.             enable: false
  149.             path: worldguard/logs/%Y-%m-%d.log
  150.             open-files: 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement