Advertisement
Guest User

Untitled

a guest
Jan 10th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. #####################
  2. ###### GENERAL ######
  3. #####################
  4.  
  5. # Lobby world name
  6. LobbyWorldName: 'lobby'
  7.  
  8. # End game after 30 minutes
  9. MaxGameTime: 30
  10.  
  11. # Bridges Build After 10 minutes
  12. BridgesBuildAt: 10
  13.  
  14. # Starts count with 28 users online
  15. PlayersToStart: 12
  16.  
  17. # Start game after 30 seconds
  18. start-delay: 30
  19.  
  20. # Stop server after 10 games
  21. MaxGamesRestart: 10
  22.  
  23. # Enable BossBar
  24. EnableBossBar: true
  25.  
  26. # Use BarAPI (Need: BarAPI plugin and set EnableBossBar: true)
  27. UseBarApi: false
  28.  
  29. # Players can build in build only if the bridges are built
  30. BuildInVoidAfterBridges: true
  31.  
  32. # Water damage
  33. WaterDamage: false
  34.  
  35. # Players can build in water
  36. BuildInWater: true
  37.  
  38. # Players can build in water only if the bridges are built
  39. BuildInWaterAfterBridges: true
  40.  
  41. #####################
  42. ####### Items #######
  43. #####################
  44. # Book on join (enabled or disabled)
  45. BookOnJoin: true
  46. BookOnJoinSlot: 0
  47. # Kit Shop (Item ID) 0 = disabled
  48. KitShop: 399
  49. KitShopSlot: 1
  50. # Team Selector (Item ID) 0 = disabled
  51. TeamSelector: 264
  52. TeamSelectorSlot: 2
  53. # Map Vote (Item ID)
  54. ItemVoteMap: 388
  55. ItemVoteMapSlot: 3
  56. # Connect to lobby (Item ID) 0 = disabled
  57. ItemExit: 345
  58. ItemExitSlot: 8
  59. ServerToConnect: 'lobby'
  60. # Spectator tool to teleport to other players
  61. ItemSpectatorTool: 397
  62. # Teleport To Team Spawn (Item ID) Only works before bridges build
  63. VIPItem: 381
  64. VIPItemSlot: 8
  65. VIPItemPermissions: 'Bridges.VIP'
  66. # Compass Tracker (Enabled or disabled)
  67. CompassTracker: true
  68. CompassTrackerAutoUpdate: true
  69. CompassTrackerSlot: 0
  70. #####################
  71. ###### Economy ######
  72. #####################
  73.  
  74. # Requires VAULT and ECONOMY plugin
  75. EnableEconomy: false
  76.  
  77. # Add money if player win the game
  78. WinGameMoney: 10
  79.  
  80. # Add money if player kill enemy team
  81. KillEnemyPlayerMoney: 2
  82.  
  83. # Add money if player win the game and has permission bridges.eco.vip
  84. VIPWinGameMoney: 20
  85.  
  86. # Add money if player kill enemy team and has permission bridges.eco.vip
  87. VIPKillEnemyPlayerMoney: 4
  88.  
  89. #####################
  90. #### Protection! ####
  91. #####################
  92.  
  93. # Protect workbench break
  94. ProtectWorkBench: true
  95.  
  96. # Protect enchantment table break
  97. ProtectEnchantmentTable: true
  98.  
  99. # Protect furnace break/interact
  100. ProtectFurnace: true
  101.  
  102. #####################
  103. ####### MYSQL #######
  104. #####################
  105.  
  106. # enabled: false = SQLite
  107. MySQL:
  108. enabled: false
  109. host: 127.0.0.1
  110. port: 3306
  111. user: root
  112. password: Password
  113. database: Bridges
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement