Advertisement
Guest User

Untitled

a guest
Jun 5th, 2018
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.85 KB | None | 0 0
  1. # This is your config.yml file. In here you can customize all BukkitGames options.
  2. # Use double quotes (") instead of single quotes (') for strings!
  3. # More information and tutorials are available here: https://bitbucket.org/ftbastler/bukkitgames/wiki/
  4.  
  5. # --- DATABASE OPTIONS ---
  6.  
  7. # If set to true, BukkitGames will use MySQL. If set to false, BukkitGames will use SQLite.
  8. MYSQL: false
  9.  
  10. # SQLite Configuration (Use this if you have set MYSQL to false)
  11. # -> The database file needs to be located in your "/plugins" folder. If it does not exist, BukkitGames will try to create it.
  12. FILENAME: "bukkitgames"
  13. EXTENSION: ".db"
  14.  
  15. # MySQL Configuration (Use this if you have set MYSQL to true)
  16. # -> Please put your username and password in "".
  17. HOSTNAME: "mysqlhost.com"
  18. PORT: 3306
  19. USERNAME: "test"
  20. PASSWORD: "pw123"
  21. DATABASE: "bukkitgames"
  22.  
  23.  
  24. # --- GENERAL OPTIONS ---
  25.  
  26. # Set a name for your server. The name will be displayed e.g. in the MOTD. Should not be longer than 32 characters.
  27. SERVER_NAME: "Survival Games"
  28.  
  29. # Minimum amount of players required to start the game.
  30. MIN_PLAYERS_START: 2
  31.  
  32. # Length of the pre-game period in seconds.
  33. PREGAME_TIME: 120
  34.  
  35. # Length of invincibility period in seconds.
  36. INVINCIBILITY_TIME: 60
  37.  
  38. # Maximum length of a game in minutes.
  39. MAX_GAME_TIME: 45
  40.  
  41. # Time in minutes after which the feast will spawn. For best results set this to MAX_GAME_TIME / 2.
  42. FEAST_SPAWN_TIME: 22
  43.  
  44. # If set to true, BukkitGames will provide some default abilities. (Check the wiki to create your own ones!)
  45. DEFAULT_ABILITIES: true
  46.  
  47. # If set to true, the health of a tribute will be shown below his name.
  48. HEALTH_BELOW_NAME: true
  49.  
  50. # If set to true, players can create teams. (Team members won't be tracked by a player's compass etc.)
  51. ENABLE_TEAMS: true
  52.  
  53.  
  54. # --- UPDATING OPTIONS ---
  55.  
  56. # If set to true, the plugin will automatically install new versions.
  57. # -> The plugin will also automatically merge your old configuration files with the new ones.
  58. # We recommend you to leave this enabled, so bugfixes get installed immediately and you don't have to update the plugin and all files manually all the time.
  59. AUTO_UPDATE: true
  60.  
  61.  
  62. # --- MONEY AND KIT OPTIONS ---
  63.  
  64. # If set to false, kit purchases will be disabled. This means players won't receive any money and the kit shop will be disabled.
  65. # -> Warning: This also means that players will no longer be able to access kits they have bought using their credits.
  66. ENABLE_KIT_PURCHASES: true
  67.  
  68. # Amount of money a player will get when he wins a game.
  69. MONEY_FOR_WIN: 10
  70.  
  71. # Amount of money a player will get when he kills a tribute.
  72. MONEY_FOR_KILL: 5
  73.  
  74. # Whether kit purchases should be permanent (e.g. buy a kit once and use it forever) or not (e.g. buy a kit only for the next game).
  75. PERMANENT_KIT_PURCHASES: true
  76.  
  77. # If set true, the winner of the last game will be able to access all kits (as a reward) for one game, and one game only.
  78. WINNER_REWARD_ALL_KITS: false
  79.  
  80. # If set to true, players will also be able to see which kits they could access if he had permissions for them (in the kit menus).
  81. SHOW_OTHER_KITS: true
  82.  
  83. # If set to true, players that didn't choose a kit when the game starts will be given a random kit of all the kits they can access.
  84. RANDOM_KIT_IF_NONE: true
  85.  
  86.  
  87. # --- FUNCTIONAL ITEMS OPTIONS ---
  88. # -> Please be sure to set a different item for every "ITEM" option in this section.
  89.  
  90. # If set to true, players will be given items, with which he can open the item menus etc.
  91. # -> This also toggles if spectators can open the teleport menu with a right click.
  92. ENABLE_FUNCTIONAL_ITEMS: true
  93.  
  94. # Set which item to use for opening the "kit selection" menu.
  95. ITEM_SELECT_KIT_MENU: "CHEST"
  96.  
  97. # Set which item to use for opening the "kit purchasing" menu.
  98. ITEM_BUY_KIT_MENU: "EMERALD"
  99.  
  100. # Set which item to use for displaying the amount of money a player has.
  101. ITEM_VIEW_MONEY: "GOLD_NUGGET"
  102.  
  103. # If set to true, players will receive a compass to locate other players, the feast and the cornucopia.
  104. COMPASS: true
  105.  
  106.  
  107. # --- FEAST AND CORNUCOPIA GENERATION OPTIONS ---
  108.  
  109. # If set to true, feast and cornucopia will be protected.
  110. PROTECT_STRUCTURES: true
  111.  
  112. # If set to true, a cornucopia will be generated at spawn.
  113. # -> When BukkitGames uses a custom world, this option will be disabled.
  114. # You will have to create a per-world configuration file for that world to enable it (visit the wiki for help).
  115. # -> To customize the items in the cornucopia chests, visit the BukkitGames wiki.
  116. GENERATE_CORNUCOPIA: true
  117.  
  118. # If set to true, a feast will be generated at a random spot after some time (see time options).
  119. # -> When BukkitGames uses a custom world, this option will be disabled.
  120. # You will have to create a per-world configuration file for that world to enable it (visit the wiki for help).
  121. # -> To customize the items in the feast chests, visit the BukkitGames wiki.
  122. GENERATE_FEAST: true
  123.  
  124.  
  125. # --- CUSTOM WORLD OPTIONS ---
  126. # -> The options in this section only apply if you have added a custom world to the BukkitGames. (Visit the wiki for more information.)
  127.  
  128. # If set to true, the plugin will decide every time your server starts whether to use a custom world or a randomly generated one.
  129. RANDOM_WORLD_PICKING: false
  130.  
  131. # If set to true, at the end of each game there will be a vote to decide which custom world to use for the next game.
  132. # -> Please note that when RANDOM_WORLD_PICKING is enabled, a "randomly generated world" option will be added to the voting so players can also choose to play on wild terrain.
  133. VOTE_FOR_NEXT_WORLD: false
  134.  
  135. # If set to true, every available option for the next world voting will be displayed in chat.
  136. # -> The option VOTE_FOR_NEXT_WORLD has to be set to true to make this work.
  137. DISPLAY_VOTING_OPTIONS_IN_CHAT: true
  138.  
  139. # If set to true, the plugin will fill the chests on a custom map with random items.
  140. # -> To customize the items in the chests, please visit the BukkitGames wiki.
  141. FILL_RANDOM_CHESTS: true
  142.  
  143. # Maximum amount of items to add to a chest on a custom map.
  144. # -> Only active when FILL_RANDOM_CHESTS is set to true.
  145. MAX_ITEMS_PER_CHEST: 3
  146.  
  147.  
  148. # --- COMMAND OPTIONS ---
  149.  
  150. # A list of commands to execute before the server shuts down. Commands are seperated by a semicolon (";").
  151. PRE_SHUTDOWN_COMMANDS: "restart"
  152.  
  153. # If set to true, a user will require the permission "bg.cmd.[cmdName]" for executing a user command.
  154. # -> Useful if you want to restrict a user command to certain groups or players.
  155. # -> Admin commands still require the permission "bg.admin".
  156. ENABLE_COMMAND_PERMISSIONS: false
  157.  
  158. # If set to true, command aliases (e.g. "/kit" or "/start") will be disabled.
  159. DISABLE_COMMAND_ALIASES: false
  160.  
  161.  
  162. # --- WORLD/MAP OPTIONS ---
  163.  
  164. # Set the radius for the circle around spawn the players will be spawned upon.
  165. PLAYER_SPAWN_RADIUS: 9
  166.  
  167. # If set to true, the plugin will use the vanilla square world border. If set to false, the plugin will use its own circular world border.
  168. SQUARE_WORLD_BORDER: false
  169.  
  170. # If square: Side length of the border in blocks. If circular: Radius of the world border around the spawn point.
  171. # -> Square: Recommended 600 blocks. Circular: Recommended 300 blocks.
  172. WORLD_BORDER_SIZE: 300
  173.  
  174. # If set to true, the world border will shrink during the game.
  175. SHRINK_WORLD_BORDER: true
  176.  
  177.  
  178. # --- OTHER OPTIONS ---
  179.  
  180. # If set to true, players will be allowed to join during a game and spectate it.
  181. SPECTATORS: true
  182.  
  183. # If set to true, players will be kicked when they die. (If set to false, SPECTATORS has to be enabled!)
  184. KICK_ON_DEATH: false
  185.  
  186. # If set to true, tributes will drop their head as a skull upon death.
  187. TRIBUTES_DROP_SKULL: true
  188.  
  189. # If set to true, the scoreboard will no longer be displayed.
  190. DISABLE_SCOREBOARD: false
  191.  
  192. # If set to true, all tributes will not be able to move until the game begins.
  193. PRE_GAME_FREEZE: false
  194.  
  195. # If set to true, the plugin will allow all players to fly until the game begins. (If set to true, PRE_GAME_FREEZE has to be disabled!)
  196. PRE_GAME_FLY: false
  197.  
  198. # If set to true, the name of the kit the player chose will be displayed in front of his name when he chats and in his death message.
  199. KIT_BEFORE_NAME: true
  200.  
  201.  
  202. # --- WEB-API OPTIONS ---
  203. # -> For more information about this feature, please visit the BukkitGames wiki.
  204.  
  205. # If set to true, BukkitGames will provide an API for websites.
  206. # -> The API can be access with the following URL: <your server ip>:<web-api-port>/?password=<web-api-password>
  207. WEB_API: false
  208.  
  209. # If WEB_API is set to true, please enter a password so only authorised persons can access the API.
  210. # -> Please put your password in "".
  211. WEB_API_PASSWORD: "password"
  212.  
  213. # If WEB_API is set to true, please set a port for it. Choose a port that does not conflict with other applications.
  214. WEB_API_PORT: 8184
  215.  
  216.  
  217. # --- DEBUG OPTIONS ---
  218. # -> Warning: If you are not debugging or experimenting, keep the following options disabled.
  219.  
  220. # If set to true, the MOTD will be displayed without colors.
  221. DISABLE_COLORS_IN_MOTD: false
  222.  
  223. # If set to true, the online/offline mode check will be bypassed. (This might cause damage to your database!)
  224. BYPASS_ONLINE_OFFLINE_MODE_CHECK: false
  225.  
  226. # If set to true, BukkitGames will not check if the game should end. Basically, the game will keep going forever.
  227. DISABLE_GAME_END_CHECK: false
  228.  
  229. # If set to true, at the end of a game BukkitGames will NOT celebrate the winner or restart the server. Basically, NOTHING will happen.
  230. DO_NOT_MAKE_GAME_END_AWESOME: false
  231.  
  232. # If set to true, BukkitGames will shutdown the server if it could not establish a SQL connection.
  233. SHUTDOWN_SERVER_IF_SQL_CONNECTION_FAILS: false
  234.  
  235. # If set to true, admins and moderators will not be teleported to spawn at the beginning of a game.
  236. DO_NOT_TELEPORT_GAMEMAKERS_AT_START: false
  237.  
  238. # If set to true, the plugin will stop reacting to the AsyncPlayerChatEvent.
  239. DO_NOT_REACT_TO_CHAT_EVENT: false
  240.  
  241. # If set to true, the plugin will stop blocking the EntityInteractEvent in pregame.
  242. DO_NOT_BLOCK_ENTITY_INTERACT: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement