Advertisement
Marcely99

Marcely's Bedwars Example: buy-group

Sep 6th, 2019 (edited)
1,624
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.23 KB | None | 0 0
  1. # Wiki Page: https://s.marcely.de/mbww7
  2. ##### IMPORTANT #### #
  3. # Names surrounded with % will be taken from the messages file.
  4. # Make sure when creating something new to remove the %!
  5. #################### #
  6.  
  7. # Change the layout of the shop here
  8. # The purpose of a layout is to order and display all the pages & items
  9. # You are able to choose between:
  10. #  - Normal
  11. #  - Hypixel
  12. #  - HiveMC
  13. #  - GommeHD
  14. #  - Rewinside
  15. #  - Minesucht
  16. #  - BergwerkLabs
  17. #  - HypixelV2
  18. layout-name: Normal
  19.  
  20. # You may also display players playing Minecraft's Bedrock Edition a different layout
  21. # Use "equally" to display the same layout as with the "layout-name" config
  22. layout-name-bedrock: equally
  23.  
  24. # Specify here which buygroups should display in single slot Buygroups here will only display one
  25. # item at a time. You will need to purchase an item for the next one in line to be visiable
  26. stacked-buygroups: []
  27.  
  28. # Configure the pages, items, products and prices here
  29. pages:
  30.  '%Shop_Page_Armor%':
  31.     icon: iron_chestplate
  32.     items:
  33.     - icon: stone
  34.       buy-group: #### <-----
  35.         name: Armor
  36.         level: 0
  37.       keep-on-death: true
  38.       products:
  39.       - type: item
  40.         material: leather_chestplate:#000000
  41.         auto-wear: true
  42.         amount: 1
  43.       prices: []
  44.      
  45.     - name: Armor &7TIER 1
  46.       icon: leather_boots:#000000
  47.       buy-group: #### <-----
  48.         name: Armor
  49.         level: 1
  50.       keep-on-death: true
  51.       products:
  52.       - type: item
  53.         material: leather_helmet
  54.         auto-wear: true
  55.         amount: 1
  56.       - type: item
  57.         material: leather_chestplate
  58.         auto-wear: true
  59.         amount: 1
  60.       - type: item
  61.         material: leather_leggings
  62.         auto-wear: true
  63.         amount: 1
  64.       - type: item
  65.         material: leather_boots
  66.         auto-wear: true
  67.         amount: 1
  68.       prices:
  69.       - type: spawner-item
  70.         spawner-id: iron
  71.         amount: 2
  72.      
  73.     - name: Armor &7TIER 2
  74.       icon: chainmail_boots
  75.       buy-group: #### <-----
  76.         name: Armor
  77.         level: 2
  78.       keep-on-death: true
  79.       products:
  80.       - type: item
  81.         material: chainmail_helmet
  82.         auto-wear: true
  83.         amount: 1
  84.       - type: item
  85.         material: chainmail_chestplate
  86.         auto-wear: true
  87.         amount: 1
  88.       - type: item
  89.         material: chainmail_leggings
  90.         auto-wear: true
  91.         amount: 1
  92.       - type: item
  93.         material: chainmail_boots
  94.         auto-wear: true
  95.         amount: 1
  96.       prices:
  97.       - type: spawner-item
  98.         spawner-id: iron
  99.         amount: 12
  100.      
  101.     - name: Armor &7TIER 3
  102.       icon: iron_boots
  103.       buy-group: #### <-----
  104.         name: Armor
  105.         level: 3
  106.       keep-on-death: true
  107.       products:
  108.       - type: item
  109.         material: iron_helmet
  110.         auto-wear: true
  111.         amount: 1
  112.       - type: item
  113.         material: iron_chestplate
  114.         auto-wear: true
  115.         amount: 1
  116.       - type: item
  117.         material: iron_leggings
  118.         auto-wear: true
  119.         amount: 1
  120.       - type: item
  121.         material: iron_boots
  122.         auto-wear: true
  123.         amount: 1
  124.       prices:
  125.       - type: spawner-item
  126.         spawner-id: gold
  127.         amount: 8
  128.      
  129.    
  130.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement