Shops

An example shop file is here:

settings:
  menu: 'example-shop-menu'
  buy-more: true
  shop-name: 'Food Shop'
  hide-message: false
  
general-configs:
  # This means all products in this shop will use this price mode and product mode.
  # unless they have set other value.
  price-mode: CLASSIC_ANY
  product-mode: CLASSIC_ANY
  # Support all product options, like prices, products, limits and so on!
  fail-actions:
    - 'sound: block.note_block.bass;;1;;1'
    
items:
  A:
    display-name: "Apple"
    price-mode: ANY
    product-mode: ALL
    products:
      1:
        material: APPLE
        amount: 1
    buy-prices:
      1:
        economy-plugin: Vault
        amount: 200
        placeholder: '{amount} Coins'
        start-apply: 0
      2:
        economy-plugin: PlayerPoints
        amount: 10
        placeholder: '{amount} Points'
        start-apply: 5
    sell-prices:
      1:
        economy-plugin: Vault
        amount: 50
        placeholder: '{amount} Coins'
      2:
        economy-plugin: PlayerPoints
        amount: 1
        start-apply: 5
        placeholder: '{amount} Points'
    buy-actions:
      - 'player_command: say %player% purchased an Apple!'
      - 'announcement: &7%player% purchased an Apple!'
  B:
    display-item:
      material: BREAD
      name: '&cSuper Bread'
    display-name: "Bread"
    add-lore:
      - '@a&ePurchase: {buy-price}'
      - '@b&eSell: {sell-price}'
    bedrock:
      hide: false
      icon: 'url;;https://raw.githubusercontent.com/Jens-Co/MinecraftItemImages/main/1.20/bread.png'
    buy-more: true
    buy-more-menu:
      menu: buy-more-2
      max-amount: 16
    price-mode: ANY
    product-mode: ALL
    products:
      1:
        material: BREAD
        amount: 1
    buy-prices:
      1:
        economy-plugin: Vault
        amount: 200
        placeholder: '{amount} Coins'
        start-apply: 0
      2:
        economy-plugin: PlayerPoints
        amount: 10
        placeholder: '{amount} Points'
        start-apply: 5
    sell-prices:
      1:
        economy-plugin: Vault
        amount: 50
        placeholder: '{amount} Coins'
      2:
        economy-plugin: PlayerPoints
        amount: 1
        start-apply: 5
        placeholder: '{amount} Points'
    buy-actions:
      - 'player_command: say %player% purchased an Apple!'
      - 'announcement: &7%player% purchased an Apple!'
    buy-limits:
      global: 100
      default: 10
      test-condition: 20
    buy-limits-conditions:
      test-condition:
        - 'permission: test.permission'
    buy-limits-reset-mode: 'TIMED'
    buy-limits-reset-time: '00:00:00'
    
buttons:
  a:
    display-item:
      material: arrow
      name: '&cPrevious page'
      lore:
        - '&7Click to view previous page!'
    actions:
      - 'shop_menu: crops'    

Settings

  • menu: Shop menu name, which means menu file name.

  • buy-more: Whether product in this shop can open buy more menu.

  • shop-name: Shop display name, which used in {shop-name} placeholder.

  • hide-message: Whether we hide the messages that will send after player buy or sell items in this shop.

General Configs

The product configuration options set here will apply to all products. For buy-action, sell-actions and fail-actions, we will auto merge the value set here and in product configs.

Items

Items is products, product can not only be real items, but also virtual items, like 100 gems economy.

Items ID / Product ID

Product ID must be a single char, because we need use them in shop menu layout option.

  • display-item: Product display item in shop menu, it can be different from the real item player will obtain after purchase. For virtual items, you must set display-item here, otherwise they can not be displayed in GUI. For real items, you must enable auto-set-first-product option under display-item section to let you remove this section, after enable, if display-item is not set, the first product real items will be used as display item. This section use Item format. Optional (if not set, will use first products)

    • display-item.modify-lore: Whether we will modify display item lore. Optional (default to true)

  • display-name: Set product display name in {product} placeholder and buy more menu display item. Optional.

  • add-lore: Set special display item add lore for this product, if not set, we will use default value set in config.yml. Optional.

  • bedrock: View this page.

  • buy-more: Set whether this product can open buy more menu, you must delete shop's buy-more option to make this option has effect! Optional.

  • buy-more-menu: Set up separate buy more menu settings for the product. Optional. Require 2.2.10+ version.

  • price-mode: Support ANY, ALL, CLASSIC_ANY, CLASSIC_ALL. Required.

  • product-mode: Same as above. Required if you have products section.

ModeANYALLCLASSIC_ANYCLASSIC_ALL

Product Give

Give random products that meet conditions.

Give all products.

Same as ANY.

Same as ALL.

Product Take (mean sells)

First product that we found player inventory have.

Players must have all products to sell.

Same as ANY.

Same as ALL.

Price Take

First prices meet the amount requirements.

All prices meet the amount requirements.

Same as ANY.

Same as ALL.

Price Give (means sell)

First prices meet the condition requirements.

All prices will be given.

Same as ANY.

Same as ALL.

Price Support

Support dynamic price & apply option.

Same as ALL.

Price must be same at everytime, or you have to disable buy-more menu in shop config.

Same as CLASSIC_ALL.

Server Performances

Maybe high when you have much buy/sell requests.

Same as ALL.

Low, just like other shop plugins doing!

Same as CLASSIC_ANY.

  • products: Product items. Support Item format and Economy format. You can also add Custom Sell Match Method here. Optional. If not set, player won't get anything after buy/sell. Useful for command shop.

    • products.conditions: Player must meet the condition to use this product.

  • buy-prices: Product buy prices. Support Item format and Economy format. You can also add Custom Sell Match Method here. Optional. If not set, product can not be purchased.

    • buy-prices.start-apply: Start which times this price will apply. Optional. Default to 0.

    • buy-prices.end-apply: Last times the price will apply. Optional. Default to infinite.

    • buy-prices.apply: Which times this price will apply, format: [1,2,3,4]. Optional. Default use start-apply option value.

    • buy-prices.placeholder: Price display name in {price} placeholder. Optional. Default unknown language key.

    • buy-prices.conditions: Player must meet the condition to use this price. Optional. Default don't have any conditions.

  • sell-prices: Product sell prices. Support Item format and Economy format. You can also add Custom Sell Match Method here. Optional. If not set, product can not be selled.

    • sell-prices also support all sub options like in buy-prices.

  • buy-actions: The action will run after buy this product, see Action for more info. Optional.

  • sell-actions: The action will run after sell this product, see Action for more info. Optional.

  • fail-actions: The action will run if we fail to buy or sell this product, see Action for more info. Optional. In example above we put this on general-configs and set it as a fail sound.

  • buy-conditions: The condition player need to meet to buy this product, see Condition for more info. Optional.

  • sell-conditions: The condition player need to meet to sell this product, see Condition for more info. Optional.

  • buy-limits: Set the maximum times of buy/sell times. Optional. If not set, product can be purchased with unlimited times.

    • buy-limits.global: Global limit. Optional.

    • buy-limits.default: If player don't meet any condition set below, they will use this limit. Required if you have set buy-limits.

  • buy-limits.<Condition ID>: Players who meet this condition will use this limit. Condition format can be found at Conditions. For example:

buy-limits:
  default: 10
  vip: 20
buy-limits-conditions:
  vip: 
    - 'permission: test.permission'
  • buy-limits-reset-mode: Support NEVER, TIMER, TIMED. If buy-limits section exists and this option does not exist, we will use default value which set in config.yml file. Required if you have set buy-limits.

ModeTIMERTIMED

Refresh Rule

Will reset use times every (first)XX hours, (second)XX minutes, (third)XX second you set here.

Will reset each day time (first)XX:(second)XX:(third)XX.

  • buy-limits-reset-time: See above to know more, format is XX:XX:XX. If buy-limits section exists and this option does not exist, we will use default value which set in config.yml file.

For example, you set reset-time to 15:00:00, and now time is 2023-09-04 12:00:00.

For TIMER: Will reset after 15 hours, which means 2023-09-05 03:00:00.

For TIMED: Will reset at 2023-09-04 15:00:00.

  • sell-limits: Same as buy-limits, but use for sell.

  • buy-cooldown-mode: Set product purchase cooldown mode. Unlike limits, cooldown is refreshed after each purchase. Optional.

  • buy-cooldown-time: Set product purchase cooldown. Optional.

  • sell-cooldown-mode: Set product sell cooldown mode. Unlike limits, cooldown is refreshed after each sell. Optional.

  • sell-cooldown-time: Set product sell cooldown. Optional.

Buttons

Shops can add buttons which has custom actions when player clicks it, view Menus page for more info.

Dynamic Value

You can set dynamic value in buy-prices, sell-prices section's amount option and buy-limits, sell-limits section's value in shop configs.

Also in buy-prices and sell-prices section, you can set new 2 options:

  • max-amount: Price max amount, useful for dynamic prices. Optional.

  • min-amount: Price min amount, useful for dynamic prices. Optional.

Please carefully note that if you want to use our PlaceholderAPI extansion's placeholder, you have to use our new format, for example:

    buy-prices:
      1:
        economy-plugin: Vault
        amount: '15 - {sell-times-player} * 0.1 + %ultimateshop_farming_B_sell-times-player% * 0.1'
        # We use the new format without { and } symbol.
        placeholder: '{amount}$'
        start-apply: 0

Additionally, you need to set menu.shop.click-update to true if the related to product is also in the menu you opened. Otherwise this price won't auto update after you sell B product.

Alternative Options

  • products.XXX.conditions can be replaced by products-conditions section.

  • buy(sell)-prices.XXX.conditions can be replaced by buy(sell)-prices-conditions section.

For example,

    products:
      1:
        material: REDSTONE
        amount: 1
    products-conditions:
      1: 
        - 'placeholder: {random_daily-1};;==;;A'

is same as:

    products:
      1:
        material: REDSTONE
        amount: 1
        conditions:
          - 'placeholder: {random_daily-1};;==;;A'

Last updated