Advertisement
Guest User

Untitled

a guest
Nov 18th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.02 KB | None | 0 0
  1. # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  2. # Most important data. The plugin will not start up if this has not been configured
  3. SETUP_DONE: false # Mark this as true once the DATABASE section has been validly set up
  4.  
  5. DATABASE:
  6.   SERVERNAME: 'localhost'
  7.   PORT: 3306
  8.   DATABASENAME: 'dayz'
  9.   USERNAME: 'user'
  10.   PASSWORD: '123'
  11. # Most important data. The plugin will not start up if this has not been configured
  12. # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  13.  
  14. # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  15. # Blocks configuration
  16. blocks:
  17.   example-block:
  18.     block: '1:0' # This is a stone block
  19.     regen: true # This block will regenerate
  20.     time: 60 # This would mean 3 seconds because there are 20 ticks in 1 second
  21.     explosives: true # Crackshot explosions will cause the block to break. No drops.
  22.     projectiles:
  23.       snowballs: true # <-- Unclear to me
  24.       eggs: true # <-- Unclear to me
  25.       arrows: true # <-- Unclear to me
  26.     placeable: true # Are players allowed to place this block?
  27.     breakable: true # Are players allowed to break this block?
  28.     drops:
  29.       drop: true # false will drop default block drop. None will drop nothing at all. True will use the drops node
  30.       items:
  31.        - '3:0:15:1-5' # 15% chance to drop between 1 to 5 dirt items
  32.       breakwith: '278:0' # Diamond pickaxe
  33.       requiredenchants: true
  34.       enchants:
  35.        - 'SILK_TOUCH:1' # Enchantments can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  36.       removeitemonbreak: true # Will the 'breakwith' item be removed if the player is holding that specific item?
  37.       required: true # Is the 'breakwith' item required to break this block?
  38.       dropsonly: true # If true, the custom drops will only dropped when the block is broken with the 'breakwith' item
  39. # Blocks configuration
  40. # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement