UltimateShop Wiki
  • 🎉Welcome
  • 🌏Other Language Wiki
  • 📦Info
    • ✅Requirements
    • ⚙️Install
    • 🔗Compatibility
    • 🛠️Configuration files
    • ⌨️Commands
    • 📊Data
    • 🚀Performance
    • ❓FAQ
    • 🆚Compare
  • 📋Format
    • 🛒Info of ItemFormat™
    • 📝ItemFormat™
      • Component Format
    • 💹EconomyFormat™
    • 🖼️Display Item Format
    • 🎬Action Format
    • ⚖️Condition Format
    • ➗Math Calculate Format
  • 🔌Menus
    • 🔲General Menus
    • 🔽Buy More Menus
    • 🛏️Bedrock Menus - Premium
    • 🥉Display Item Add Lore
  • 🛍️Shops
    • 📂Shops
    • 🛒Products
    • 💰Products Config: Single Thing
    • ♻️Product Config: Buy/Sell Times Reset
    • 📚Common Examples
    • 🌱Example: Stock (like in life)
    • 📅Example: Daily Shops
    • 🏆Example: Daily Rewards
  • 📍Placeholders
    • 🔧Built-in Placeholder
    • 🔀Random Placeholder - Premium
    • ⛓️Conditional Placeholder - Premium
    • 🔖Example: Discount
  • 💰Dynamic Prices
    • 🔄Dynamic Price
    • 🔴Dynamic Price Status - Premium
  • ✨Features
    • 🎨Color Code
    • 💴Easy Prices
    • 🪄Sell Stick - Premium
    • 💾Saved Item (Item Manager)
    • 🌍Localized Item Name - Premium
    • 🌐Multi Server Sync - Premium
    • 🔢Number Format
    • ✏️In-game Editor - Premium
    • 🎮Custom Click Event - Premium
    • 🔍Custom Item Match Method
    • 🔑Give Item Method
    • 💳Log Transaction - Premium
  • 💻Develop
    • Develop Guide
    • Events
    • Hook into UltimateShop
    • Can't do things
Powered by GitBook
On this page
  • Single
  • Multi
  1. 📋Format

🖼️Display Item Format

Previous💹EconomyFormat™Next🎬Action Format

Last updated 21 days ago

You can use display item format in menu button and shop product's display-item option.

Single

If your display item is only one and does not have any condition to display it, simply use in this section!

  B:
    display-item:
      material: BREAD
      name: '&cSuper Bread'

Multi

If you want set multi display item for this button or product and use condition system to make us choose one of it to display, simply use this new format as below:

  1:
    display-item:
      default:
        material: GREEN_WOOL
        amount: 1
        name: '&eDay 1'
        lore:
          - '&fToday Reward:'
          - '&7  - 10 Gems'
          - ''
          - '&#FFFACDClick to claim!'
      claimed:
        material: RED_WOOL
        amount: 1
        name: '&eDay 1'
        lore:
          - '&fIncluded Reward:'
          - '&7  - 10 Gems'
          - ''
          - '&#ff3300Already claimed!'
    display-item-conditions:
      claimed: # Condition ID
        1: # Means first condition
          type: placeholder
          placeholder: '%ultimateshop_streak_A_{buy-times-player}%'
          rule: '>'
          value: '0'
        2: # You can add more condition with Condition Format
          type: world
          world: 'testCondition'
      default:
        1:
          type: placeholder
          placeholder: '%ultimateshop_streak_A_{buy-times-player}%'
          rule: '='
          value: '0'z
Item Format