Guest User

Untitled

a guest
Oct 16th, 2016
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.71 KB | None | 0 0
  1. #
  2. #Hi and welcome to BlockFarmers configuration
  3. #If you want to regen this file, just delete it and reload the plugin
  4. #
  5.  
  6. #This is the length of the pause between each game in seconds
  7. #default: 15
  8. waiting-timer: 15
  9.  
  10. #This is the length of the time when the game is finished when the fireworks spawn
  11. #default: 5
  12. clapping-timer: 5
  13.  
  14. #This is the list of blocks that can be farmed in game, you need to specify the name and the data
  15. #
  16. #Example:
  17. #farmable-blocks:
  18. # - GRASS:0
  19. # - DIRT:1
  20. # - WOOD:5
  21. #
  22. #Theses are Bukkit material names and not vanilla names
  23. #The list of materials can be found here http://kiwike.se/wiki/index.php/Item_Names
  24. farmable-blocks:
  25. - GRASS:0
  26.  
  27. #The auto-join mode permit players to join instantly the game when joining the server.
  28. #Optimal for BungeeCord networks with BlockFarmers alone on a server
  29. #Players with the staff/admin permission (BlockFarmers.staff) are not automatically put in game and they can leave with the command
  30. auto-join: false
  31.  
  32. #Since stats aren't synchronized between servers for now, you may want to disable stats if you have multiples blockfarmers servers in your network
  33. enable-stats: true
  34.  
  35. #The teleport-join mode permit players to join the game when they are teleported in the region and leave the game when they are teleported out
  36. #Perfect for Multiverse servers with portals to join games
  37. #Players with the staff/admin permission (BlockFarmers.staff) are not automatically put in game when they are teleported in the region
  38. teleport-join: true
  39.  
  40. #If you enable this, people in game will have their name red in the player list and they will have a header and a footer to their player list containing infos about the game
  41. color-in-tab: true
  42.  
  43. #This is the command-blocking feature only actived for players in-game. You can enable it or disable it and you have the list of non-blocked commands just after
  44. block-commands: true
  45. allowed-commands:
  46. - mobracers
  47. - mr
  48. - reload
  49. - ban
  50. - mute
  51. - kick
  52.  
  53. #Do you want to use displaynames or normal names ? Display names may include the ranks and essentials nicknames
  54. use-displaynames: false
  55.  
  56. #The minimum of players cannot be less than 2 and the maximum cannot be more than 16
  57. min-players: 2
  58. max-players: 8
  59.  
  60. #The invitation message is a message sent to all the server when a player join the game and there's not enough players to begin.
  61. #There's an anti-spam measure which obligate the message to be sent every 30 messages minimum
  62. invitation-message: false
  63.  
  64. #This is the list of worlds in which you want to broadcast the invitation message and the win message
  65. #You can put a star "*" to include all the worlds and "null" to send theses messages only for the players in the game.
  66. #If you decide to configure the list of worlds, you will need to organisate them as a string list just like the commands alloweds above
  67. broadcast-worlds: "*"
  68.  
  69. #Do you want to keep the states of your players so they will get it back when leaving the game ?
  70. #This option is optimal for factions servers, there's no way to use MobRacers to get life or food with this.
  71. #Plus, it completly keeps the inventory and exp of all players.
  72. #This option also permit you to not set the exit location since they are teleported back to their previous location.
  73. #List of things saved by this feature:
  74. #The location, the velocity and the fall distance
  75. #Inventory, Armor and Item on the cursor
  76. #Health, Food level, saturation and exhaustion
  77. #Fire ticks and remaining air
  78. #Gamemode, the permission to fly and the flying itself
  79. #Walking speed and Flying speed
  80. #All potion effects
  81. keep-player-states: false
  82.  
  83. #This option makes MobRacers change the server MOTD to the current MobRacers status
  84. #MOTDs are configurable in the lang file using the lines standby-status, arenaselect-status, vehicleselect-status and game-status
  85. #This can be really useful if you plan to do a big networks with multiples MobRacers server
  86. #and you need to show the current status of servers.
  87. enable-motd: false
  88.  
  89. #Configures BlockFarmers' database connection
  90. #Disabling the sql without disabling stats above will use Yaml userdatas to save players data
  91. #The plugin support almost any databse compatible with jdbc
  92. #
  93. #Noticeable drivers & urls:
  94. # com.mysql.jdbc.Driver
  95. # jdbc:mysql://localhost:3306/yourdatabase
  96. #
  97. # org.sqlite.JDBC
  98. # jdbc:sqlite:/C:/Users/you/yourdatabase
  99. #
  100. sql-enabled: false
  101. sql-driver: com.example.jdbc.Driver
  102. sql-url: jdbc:example://localhost:3306/minecraft_db
  103. sql-user: blockfarmers_admin
  104. sql-password: secret
  105.  
  106. #Use the end-game commands to use BlockFarmers with your economy ! You can set a list of commands, how much you want
  107. #The winner's name can be used with <winner>
  108. #
  109. #Remove the '#'s to activate it
  110. #endgame-commands:
  111. # - 'give <winner> minecraft:diamond 1'
Add Comment
Please, Sign In to add comment