Advertisement
Guest User

Untitled

a guest
Aug 20th, 2015
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.89 KB | None | 0 0
  1. # -
  2. # About editing this file:
  3. # * Don't edit this file if you aren't sure about what are you doing.
  4. # * Don't use tabs, this is a yaml file so you have to use spaces instead.
  5. # * Don't get rid of the indents. They are indented so some entries are
  6. # in categories (like "configurable-flags" is in the "player" category.
  7. # * If you want to check the format of this file before putting it
  8. # into this plugin, paste it into http://yaml-online-parser.appspot.com/
  9. # and see if it gives "ERROR:".
  10. # * Lines starting with # are commentsand so they are ignored.
  11. # -
  12.  
  13. # Don't touch this variable.
  14. config-version: 3
  15.  
  16. ps-default:
  17. flags:
  18. # The values of "greeting" and "farewell" are references to your i18n file.
  19. # You can change them from your .properties file or remove them if you
  20. # want to leave them empty.
  21. greeting: greeting-default-flag
  22. farewell: farewell-default-flag
  23. lava-flow: deny
  24. water-flow: deny
  25. pvp: deny
  26. creeper-explosion: deny
  27. other-explosion: deny
  28. enderpearl: deny
  29. tnt: deny
  30. entity-item-frame-destroy: deny
  31. entity-painting-destroy: deny
  32. fire-spread: deny
  33. ghast-fireball: deny
  34. enderman-grief: deny
  35. leaf-decay: deny
  36. mob-spawning: deny
  37. mob-damage: deny
  38.  
  39. # The list of player's configurable flags. Only WorldGuard flags listed here
  40. # can be used by normal player during game for configuring them regions.
  41. player:
  42. configurable-flags:
  43. - build
  44. - chest-access
  45. - creeper-explosion
  46. - enderdragon-block-damage
  47. - enderman-grief
  48. - enderpearl
  49. - entity-item-frame-destroy
  50. - entity-painting-destroy
  51. - farewell
  52. - fire-spread
  53. - ghast-fireball
  54. - grass-growth
  55. - greeting
  56. - ice-form
  57. - ice-melt
  58. - lava-fire
  59. - lava-flow
  60. - leaf-decay
  61. - lighter
  62. - lightning
  63. - mob-damage
  64. - mob-spawning
  65. - passthrough
  66. - pistons
  67. - potion-splash
  68. - pvp
  69. - sleep
  70. - snow-fall
  71. - snow-melt
  72. - tnt
  73. - use
  74. - vehicle-destroy
  75. - vehicle-place
  76. - water-flow
  77.  
  78. # Plugin messages prefix, put the name of your server here.
  79. prefix: '&4&l[&8&lCrafters PB&4&l]&e '
  80.  
  81. # The language configuration.
  82. # Remember that a file called i18n_<lang>_<country>.properties must to exists.
  83. # The default configuration is:
  84. # lang: en
  85. # country: US
  86. # So a file called i18n_en_US.properties will be loaded from the plugin/lang directory.
  87. # Included locales are:
  88. # lang: en, es, de
  89. # country: US, ES, DE
  90. # Special thanks to EvilOlaf/Krauti2 for the German translation.
  91. lang: en
  92. country: US
  93.  
  94. # A list of worlds which will be ignored.
  95. ignored:
  96. worlds:
  97. - world_nether
  98. - world_the_end
  99. - enderfarm_the_end
  100. - parcelas
  101. - plotworld
  102. - LobbyHG
  103. - SolarFrost
  104. - Hub
  105. - Mapa1
  106.  
  107. # Allow players to have multiple Protection Blocks.
  108. # Players need pb.protection.multiple before they can have more than 1 protection.
  109. # You can set the default number of multiple homes using the 'default' rank below.
  110. # To remove the home limit entirely, give people 'pb.protection.unlimited'.
  111. # To grant different home amounts to different people, you need to define a 'home-rank' below.
  112. # Create the 'home-rank' below, and give the matching permission: pb.protection-multiple.<home-rank>
  113. protection-multiple:
  114. default: 3
  115. vip: 5
  116. staff: 10
  117.  
  118. # Special flags
  119. # Here are configured the special flags which affects protection blocks.
  120. # The default configuration tells the plugin which materials will be replaced
  121. # for automatic fences when a +FENCE protection block is placed:
  122. flags:
  123. fence:
  124. replace-materials: [AIR, LONG_GRASS, FENCE, DOUBLE_PLANT,
  125. YELLOW_FLOWER, RED_ROSE, RED_MUSHROOM, BROWN_MUSHROOM]
  126.  
  127. # Shop configuration
  128. # The configuration for creating shops.
  129. shop:
  130. enable: true
  131. sign-first-line: [Crafters PB]
  132. price-decimals: 2
  133. owner-name: Admin Shop
  134.  
  135. # Autosave options
  136. auto-save:
  137. enabled: true
  138. interval-minutes: 5
  139. log-messages: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement