Advertisement
Guest User

Untitled

a guest
Feb 26th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. #
  2. # This is the main config file for ZombieVsPlayer.A lot of arena specific options can be found in the arena file.
  3. # For more information read the comments or visit the Bukkit page:
  4. # http://dev.bukkit.org/bukkit-plugins/zombievsplayer/
  5.  
  6. plugin:
  7. enableMetrics: true
  8.  
  9. # Language setting for the plugin. Currently supported are: en - English, de - German, hu - Hungarian
  10. # For language configuration look into the messages folder.
  11. Locale: en
  12.  
  13. # This option enables debugMode.
  14. # Only for development or testing purposes. This option can harm your game!
  15. debugMode: false
  16.  
  17. # The loglevel is only used if debugMode is true.
  18. # It defines the amount of log messages on the console.
  19. loglevel: 500
  20. update:
  21. enable: true
  22. autoUpdate: true
  23. showUpdateInConsole: true
  24.  
  25. # ZvP can use essentials kits from the essentials config file.
  26. # This method is read-only and will only read from the configuration file.
  27. # Some features from essentials kits may not be supported!
  28. # Using essentials kits disables features provided by zvp kits!
  29. useEssentialsKits: false
  30.  
  31. # If enabled ZvP handles WorldGuard region flags by itself. It will create an arena region and set if necessary his parent region. Some Flags are applied too.
  32. # Note that this feature is experimental and you should rather do the region settings on your own!
  33. manageWorldGuard: false
  34. economy:
  35.  
  36. # Enable or disable economy support.
  37. # If enabled your bank account will be used for the game!
  38. # Note that you need Vault for working economics on your server!
  39. enableEcon: false
  40.  
  41. # If enabled kits costs money too.
  42. # Note that the price of the kit is set in their kit-file.
  43. integrateKits: true
  44.  
  45. # If enabled your bank account will be used for purchasing/selling and Kill/death bonuses.
  46. # Note that this game could ruin your bank balance!
  47. integrateGame: true
  48. game:
  49.  
  50. # Enable kits for the game.
  51. # If disabled the player will start and end the game with their current items.
  52. # The inventory will be restored after the game.
  53. # Note that this has to be false if you use keepInventory!
  54. enableKits: true
  55.  
  56. # Fireworks will shoot when the game ends.
  57. # Note that Fireworks take extra time!
  58. enableFirework: true
  59.  
  60. # If set to true the game will allow players to join a running game.
  61. # Note that a change of players will affect the number of Zombies!
  62. allowDuringGameJoin: true
  63.  
  64. # Maximal amount of players in an arena.
  65. maximal_Players: 25
  66.  
  67. # Amount of rounds a newly created arena will have by default.
  68. default_rounds: 2
  69.  
  70. # Amount of waves a newly created arena will have by default.
  71. default_waves: 4
  72. zombies:
  73.  
  74. # Default zombie spawnrate for newly created arenas.
  75. # The spawnrate defines how many zombies will spawn.
  76. # The calculation uses arena size, amount of player, spawnrate and difficulty setting.
  77. default_spawnRate: 8
  78. stats:
  79.  
  80. # Enables general game statistics such as kills, deaths, etc..
  81. # Statistics should be written in a database. If no database is available, a file will be used!
  82. enable_game_statistics: true
  83.  
  84. # If true, the following information will be used to connect to the database.
  85. # Otherwise ZvP uses a file for statistics!
  86. useDatabase: false
  87. db_host: localhost
  88. db_port: 3306
  89. db_protocol: mysql
  90. db_name: minecraft
  91. db_user: user
  92. db_pass: password
  93. chat:
  94.  
  95. # If enabled the chat will be modified to match ZvP colors and commands will be disabled.
  96. # If disabled the chat will not be changed at all!
  97. modifyChat: true
  98.  
  99. # A list of commands that can be executed during a ZvP game.
  100. # Note that zvp commands are automatically included!
  101. commandWhitelist: []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement