Advertisement
Guest User

GKITS.YML

a guest
Jan 2nd, 2018
758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.54 KB | None | 0 0
  1. # GKits Configuration File
  2. # Replication of my GKits plugin, dedicated for AdvancedEnchantments.
  3.  
  4. # Should GKits/this configuration/GKits command be enabled? [true/false]
  5. gkits-enabled: true
  6.  
  7. inventory:
  8.  # Size of inventory
  9.   # * Determine size of GKits inventory (1 row = 9 slots, max 6 rows)
  10.   size: 3
  11.   # Name of inventory
  12.   # * Change the name of GKits inventory
  13.   name: '&6Advanced GKits'
  14.   # Custom inventory commnad
  15.   # * Create a handy command to open GKits inventory
  16.   custom-command: /gkits
  17.   sounds:
  18.    # Inventory opening sound
  19.     # * Sound is played on inventory open via comamnd
  20.     inventory-open: CLICK
  21.     # Usage of kit sound
  22.     # * Sound played upon the use of any of the available kits
  23.     kit-use: LEVEL_UP
  24.     # These are 1.8 sounds, if your server version is 1.9 or higher, please use different sounds.
  25.     # Invalid sounds will not spam console with errors, they will just not play.
  26. # Let players preview GKits by right-clicking on any gkit (permission: gkit.preview)
  27. preview:
  28.   enabled: true
  29.   inventory:
  30.    # Biggest the inventory can be, set to "AUTO" if you want inventory size to be set depending on gkit content amount.
  31.     # (1 row = 9 slots, max 6 rows)
  32.     max-size: 4
  33.     # If there is any free slots in preview inventory, should they be filled with selected block?
  34.     fill-blanks: true
  35.     material: STAINED_GLASS_PANE
  36.     data: 15
  37. # ((this adds custom enchantments support, you may give random level of custom enchantments, eg: "&fSpeed %1-3%" adding in lore))
  38. messages:
  39.  # Placeholders available:
  40.   # * {gkit} - Name of GKit
  41.   # * {cooldown} - Cooldown of GKit
  42.   cooldown: '&eYou cannot use this kit yet, kit &6{gkit}&e is on cooldown &7({cooldown})'
  43.   no-perm: '&eYou don''t have permissions to use &e{gkit}&6 kit.'
  44.   used-kit: '&eYou have used kit &6{gkit}.'
  45. kits:
  46.  # Kits may have some unique configuration, here are examples:
  47.   #  * you may give random level of custom enchantments, eg: "speed:%1-3%"
  48.   #  * add chance for an enchantment to not be added, eg: "!25!:speed:1"; 25% chance for the enchantment to not be added to item.
  49.   god:
  50.     slot: 0
  51.     delay: 6000
  52.     display:
  53.       no-permission:
  54.         material: STAINED_GLASS_PANE
  55.         data: 14
  56.         force-glow: false
  57.         name: '&c{gkit}'
  58.         lore:
  59.        - '&7&lSTATUS &cNot unlocked'
  60.         - '&cYou haven''t unlocked this kit yet!'
  61.       cooldown:
  62.         material: STAINED_GLASS_PANE
  63.         data: 4
  64.         name: '&e{gkit}'
  65.         force-glow: false
  66.         lore:
  67.        - '&7&lSTATUS &eON COOLDOWN'
  68.         - '&c{cooldown}&f left until you can use this gkit.'
  69.       available:
  70.         material: STAINED_GLASS_PANE
  71.         data: 5
  72.         name: '&a{gkit}'
  73.         force-glow: false
  74.         lore:
  75.        - '&7&lSTATUS &aAVAILABLE'
  76.         - '&cYou can use this kit now.'
  77.     permission: gkits.god
  78.     content:
  79.       '1':
  80.         material: DIAMOND_SWORD
  81.         data: 0
  82.         amount: 1
  83.         name: '&c&lGOD SWORD'
  84.         lore:
  85.          - '&7Sword for the greatest warriors'
  86.         advanced-enchantments:
  87.          - "!20!:vampire:%1-2%"
  88.           - "poison:%1-3%"
  89.         enchants:
  90.           - sharpness:5
  91.           - unbreaking:3
  92.       '2':
  93.         material: GOLD_HELMET
  94.         data: 0
  95.         amount: 1
  96.         name: '&6&lKING HELMET'
  97.         lore:
  98.          - '&7Helmet for kings'
  99.         advanced-enchantments:
  100.          - "glow:1"
  101.         enchants:
  102.           - protection:4
  103.           - unbreaking:3
  104.       '3':
  105.         command: 'tell %player% You can add commands as items for gkits!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement