Advertisement
Guest User

Configs

a guest
Apr 21st, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. # Locale (en, cs, ru)
  2. locale: en
  3.  
  4. allow-crafting: false
  5. keep-inventory-on-death: false
  6. in-lobby-colored-leather-by-team: true
  7. jointeam-entity-show-name: true
  8. friendlyfire: false
  9. player-drops: true
  10. join-randomly-after-lobby-timeout: false
  11. spectator-gm3: false
  12. prevent-killing-villagers: true
  13. compass-enabled: true
  14. join-randomly-on-lobby-join: true
  15. add-wool-to-inventory-on-join: true
  16.  
  17. # Commands whitelist
  18. allowed-commands:
  19. - "/help"
  20. - "/shop RedShop"
  21. - "/shop BlueShop"
  22. - "/shop GreenShop"
  23. - "/shop YellowShop"
  24.  
  25. # Ignored blocks (Farm blocks)
  26. farmBlocks:
  27. enable: true
  28. blocks:
  29. - WHEAT
  30. - CARROTS
  31. - POTATOES
  32. - BEETROOTS
  33.  
  34. # Scoreboard settings
  35. scoreboard:
  36. enable: true
  37. title: "§a%game%§r - %time%"
  38. bedLost: "§c\u2718"
  39. bedExists: "§a\u2714"
  40. teamTitle: "%bed%%color%%team%"
  41.  
  42. # Title speed
  43. title:
  44. fadeIn: 0
  45. stay: 20
  46. fadeOut: 0
  47.  
  48. # Items
  49. items:
  50. jointeam: COMPASS
  51. leavegame: SLIME_BALL
  52. shopback: BARRIER
  53. shopcosmetic: GRAY_STAINED_GLASS_PANE
  54. pageback: ARROW
  55. pageforward: ARROW
  56.  
  57. # Vault rewards
  58. vault:
  59. enable: false
  60. reward:
  61. kill: 5
  62. win: 20
  63.  
  64. # Resources
  65. resources:
  66. bronze:
  67. material: IRON_INGOT
  68. interval: 2
  69. name: "Iron"
  70. translate: "resource_iron"
  71. color: GRAY
  72. spread: 1.0
  73. iron:
  74. material: GOLD_INGOT
  75. interval: 8
  76. name: "Gold"
  77. translate: "resource_gold"
  78. color: GOLD
  79. spread: 1.0
  80. gold:
  81. material: EMERALD
  82. interval: 40
  83. name: "Emerald"
  84. translate: "resource_emerald"
  85. color: GREEN
  86. spread: 1.0
  87. diamond:
  88. material: DIAMOND
  89. interval: 20
  90. name: "Diamond"
  91. translate: "resource_diamond"
  92. color: AQUA
  93. spread: 1.0
  94.  
  95. # Sounds (look to github src/main/java/misat11/bw/utils/Sounds.java for possible values)
  96. sounds:
  97. on_bed_destroyed: ENTITY_ENDER_DRAGON_GROWL
  98. on_countdown: UI_BUTTON_CLICK
  99. on_game_start: ENTITY_PLAYER_LEVELUP
  100. on_team_kill: ENTITY_PLAYER_LEVELUP
  101. on_item_buy: ENTITY_ITEM_PICKUP
  102.  
  103. # Game effects
  104. game-effects:
  105. end:
  106. type: Firework
  107. power: 1
  108. effects:
  109. - ==: org.bukkit.FireworkEffect
  110. type: BALL
  111. fade-colors:
  112. - ==: org.bukkit.Color
  113. RED: 255
  114. GREEN: 255
  115. BLUE: 255
  116. colors:
  117. - ==: org.bukkit.Color
  118. RED: 255
  119. GREEN: 255
  120. BLUE: 255
  121. trail: false
  122. flicker: false
  123. start: {}
  124. kill: {}
  125. teamkill: {}
  126. lobbyjoin: {}
  127. lobbyleave: {}
  128. respawn: {}
  129. beddestroy: {}
  130. warppowdertick: {}
  131.  
  132.  
  133. # Lobby scoreboard
  134. lobby-scoreboard:
  135. enabled: true
  136.  
  137. title: "§eBEDWARS"
  138.  
  139. content:
  140. - " "
  141. - "§fMap: §2%arena%"
  142. - "§fPlayers: §2%players%§f/§2%maxplayers%"
  143. - " "
  144. - "§fWaiting ..."
  145. - " "
  146.  
  147. # Statistics
  148. statistics:
  149. enabled: true
  150. type: 'yaml'
  151. show-on-game-end: true
  152. bed-destroyed-kills: false
  153.  
  154. # Scores configuration
  155. scores:
  156. kill: 10
  157. die: 0
  158. win: 50
  159. bed-destroy: 25
  160. lose: 0
  161. record: 100
  162.  
  163. # database (currently only mysql) configuration
  164. database:
  165. host: localhost
  166. port: 3306
  167. db: database
  168. user: root
  169. password: secret
  170. table-prefix: bw_
  171.  
  172. # Do not edit this!!!
  173. version: 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement