Advertisement
Guest User

Untitled

a guest
Aug 1st, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. #
  2.  
  3. # WorldGuard's configuration file
  4.  
  5. #
  6.  
  7. # About editing this file:
  8.  
  9. # - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If
  10.  
  11. # you use an editor like Notepad++ (recommended for Windows users), you
  12.  
  13. # must configure it to "replace tabs with spaces." In Notepad++, this can
  14.  
  15. # be changed in Settings > Preferences > Language Menu.
  16.  
  17. # - Don't get rid of the indents. They are indented so some entries are
  18.  
  19. # in categories (like "enforce-single-session" is in the "protection"
  20.  
  21. # category.
  22.  
  23. # - If you want to check the format of this file before putting it
  24.  
  25. # into WorldGuard, paste it into http://yaml-online-parser.appspot.com/
  26.  
  27. # and see if it gives "ERROR:".
  28.  
  29. # - Lines starting with # are commentsand so they are ignored.
  30.  
  31. #
  32.  
  33. # WARNING:
  34.  
  35. # Remember to check the compatibility spreadsheet for WorldGuard to see
  36.  
  37. # if any features are currently broken in your version of Bukkit.
  38.  
  39. #
  40.  
  41.  
  42.  
  43. summary-on-start: on
  44.  
  45.  
  46.  
  47. suppress-tick-sync-warnings: false
  48.  
  49.  
  50.  
  51. protection:
  52.  
  53. enforce-single-session: on
  54.  
  55. item-durability: on
  56.  
  57.  
  58.  
  59. simulation:
  60.  
  61. sponge:
  62.  
  63. enable: off
  64.  
  65. redstone: off
  66.  
  67. radius: 3
  68.  
  69.  
  70.  
  71. physics:
  72.  
  73. no-physics-gravel: off
  74.  
  75. no-physics-sand: off
  76.  
  77. allow-portal-anywhere: off
  78.  
  79. disable-water-damage-blocks: []
  80.  
  81.  
  82.  
  83. ignition:
  84.  
  85. block-tnt: off
  86.  
  87. block-lighter: off
  88.  
  89.  
  90.  
  91. fire:
  92.  
  93. disable-all-fire-spread: off
  94.  
  95. disable-fire-spread-blocks: []
  96.  
  97. disable-lava-fire-spread: off
  98.  
  99. lava-spread-blocks: []
  100.  
  101.  
  102.  
  103. mobs:
  104.  
  105. block-creeper-explosions: off
  106.  
  107. block-creeper-block-damage: off
  108.  
  109.  
  110.  
  111. spawn:
  112.  
  113. login-protection: 3
  114.  
  115. spawn-protection: 0
  116.  
  117. kick-on-death: off
  118.  
  119. exact-respawn: off
  120.  
  121. teleport-to-home-on-death: off
  122.  
  123.  
  124.  
  125. player-damage:
  126.  
  127. disable-fall-damage: off
  128.  
  129. disable-lava-damage: off
  130.  
  131. disable-fire-damage: off
  132.  
  133. disable-drowning-damage: off
  134.  
  135. disable-suffocation-damage: off
  136.  
  137. disable-contact-damage: off
  138.  
  139. teleport-on-suffocation: off
  140.  
  141.  
  142.  
  143. regions:
  144.  
  145. enable: on
  146.  
  147. wand: 287
  148.  
  149. default:
  150.  
  151. build: true
  152.  
  153. chest-access: false
  154.  
  155. pvp: true
  156.  
  157. lighter: true
  158.  
  159. tnt: true
  160.  
  161. creeper: true
  162.  
  163. mobdamage: true
  164.  
  165.  
  166.  
  167. blacklist:
  168.  
  169. logging:
  170.  
  171. console:
  172.  
  173. enable: on
  174.  
  175. database:
  176.  
  177. enable: on
  178.  
  179. dsn: jdbc:mysql://10.1.1.20:3306/minecraft
  180.  
  181. user: ####
  182.  
  183. password: ####
  184.  
  185. table: ####
  186.  
  187. file:
  188.  
  189. enable: off
  190.  
  191. path: worldguard/logs/%Y-%m-%d.log
  192.  
  193. open-files: 10
  194.  
  195.  
  196.  
  197. # See http://wiki.sk89q.com/wiki/WorldGuard/Permissions/Bukkit
  198.  
  199. permissions:
  200.  
  201. users:
  202.  
  203. sk89q:
  204.  
  205. permissions:
  206.  
  207. - /region
  208.  
  209. - /reloadwg
  210.  
  211. - /reload
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement