Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2015
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 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. pvp: deny
  24. creeper-explosion: deny
  25. tnt: deny
  26. fire-spread: deny
  27. ghast-fireball: deny
  28. enderman-grief: deny
  29. leaf-decay: deny
  30. deny-spawn: zombie, skeleton, creeper, witch, wolf, spider, slime, bat
  31.  
  32. # The list of player's configurable flags. Only WorldGuard flags listed here
  33. # can be used by normal player during game for configuring them regions.
  34. player:
  35. configurable-flags:
  36. - build
  37. - chest-access
  38. - creeper-explosion
  39. - enderdragon-block-damage
  40. - enderman-grief
  41. - enderpearl
  42. - entity-item-frame-destroy
  43. - entity-painting-destroy
  44. - farewell
  45. - fire-spread
  46. - ghast-fireball
  47. - grass-growth
  48. - greeting
  49. - ice-form
  50. - ice-melt
  51. - lava-fire
  52. - lava-flow
  53. - leaf-decay
  54. - lighter
  55. - lightning
  56. - mob-damage
  57. - mob-spawning
  58. - passthrough
  59. - pistons
  60. - potion-splash
  61. - pvp
  62. - sleep
  63. - snow-fall
  64. - snow-melt
  65. - tnt
  66. - use
  67. - vehicle-destroy
  68. - vehicle-place
  69. - water-flow
  70.  
  71. # Plugin messages prefix, put the name of your server here.
  72. prefix: '&1[&6Libelula PB&1]&e '
  73.  
  74. # The language configuration.
  75. # Remember that a file called i18n_<lang>_<country>.properties must to exists.
  76. # The default configuration is:
  77. # lang: en
  78. # country: US
  79. # So a file called i18n_en_US.properties will be loaded from the plugin/lang directory.
  80. # Included locales are:
  81. # lang: en, es, de
  82. # country: US, ES, DE
  83. # Special thanks to EvilOlaf/Krauti2 for the German translation.
  84. lang: en
  85. country: US
  86.  
  87. # A list of worlds which will be ignored.
  88. ignored:
  89. worlds: []
  90.  
  91. # Allow players to have multiple Protection Blocks.
  92. # Players need pb.protection.multiple before they can have more than 1 protection.
  93. # You can set the default number of multiple homes using the 'default' rank below.
  94. # To remove the home limit entirely, give people 'pb.protection.unlimited'.
  95. # To grant different home amounts to different people, you need to define a 'home-rank' below.
  96. # Create the 'home-rank' below, and give the matching permission: pb.protection-multiple.<home-rank>
  97. protection-multiple:
  98. default: 3
  99. donator: 3
  100. vip: 5
  101. staff: 10
  102. owner: 20
  103.  
  104. # Special flags
  105. # Here are configured the special flags which affects protection blocks.
  106. # The default configuration tells the plugin which materials will be replaced
  107. # for automatic fences when a +FENCE protection block is placed:
  108. flags:
  109. fence:
  110. replace-materials: [AIR, LONG_GRASS, FENCE, DOUBLE_PLANT,
  111. YELLOW_FLOWER, RED_ROSE, RED_MUSHROOM, BROWN_MUSHROOM]
  112.  
  113. # Shop configuration
  114. # The configuration for creating shops.
  115. shop:
  116. enable: true
  117. sign-first-line: [lpb]
  118. price-decimals: 2
  119. owner-name: Admin Shop
  120.  
  121. # Autosave options
  122. auto-save:
  123. enabled: true
  124. interval-minutes: 5
  125. log-messages: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement