HyphaShop
🟡 Updated this yearPreview

🔍 Analysis
- 🏆 #83 of 84 economy mods in this game by downloads
📋 About This Mod
**Note:** Until this plugin's version number exits the Beta stage, it is not recommended for production use. Additionally, an English Wiki will not be provided prior to that point. Please treat it as a trial. If you encounter any issues while testing the plugin, feel free to report them on Discord or GitHub Issues. Official Document: <https://ykdz.github.io/HyphaDocs/> # HyphaShop A highly dynamic, script-assisted, high-performance shop plugin. <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/MAIPv8mlwzc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> ## Features * Progressive — advanced features are optional * Random product pricing * Random product quantity * Conditional product listing * Product stock * Reusable product configurations (no need to repeat setups) * Product rarity * Bundle products * Basic attribute support (Skull, Flag, Trim, Potion Effect, Custom Model Data) * Automatic translation of Vanilla item names * Merchant mode for shops * Trade logging * Unified cart-based transactions * Fully translatable content * Comprehensive GUI system * JavaScript-like scripting system ## Progressive If you only need a simple shop plugin to sell vanilla items, you can follow the configuration example in `product/wools.yml`. All advanced features are completely optional and won’t consume extra cpu if unused. ## Random Product Pricing Add the following configuration to enable random pricing like shown in the image: ```yml default-configs: buy-price: mean: 80 dev: 10 round: true sell-price: mean: 5 dev: 2 ``` !(https://cdn.modrinth.com/data/cached_images/732a730fcae61e5e2a8cda3cf2c4bbfd72e8409b.png) ## Random Product Quantity Product quantity can accept a script string as a value. It can also adjust pricing based on quantity automatically. ```yml default-configs: item: amount: 8 + nextUniform(8, 16) buy-price: formula: base * (1 + (Math.random() * 2 - 1) * buy_range) * product_amount sell-price: formula: base * (1 + (Math.random() * 2 - 1) * sell_range) * product_amount products: GOLD_ORE: item: base: gold_ore buy-price: context: const base = 200 sell-price: context: const base = 70 ``` !(https://cdn.modrinth.com/data/cached_images/0f37e6439082f68fdd1638a852b5fe708553e6dc.png) ## Conditional Product Listing Scripts can participate in plugin logic at various hooks, including controlling whether a product is listed. ```yml default-configs: actions: on-before-list: - | const timeStr = papi("%world_time_world%").split(":"); const hours = timeStr; number(hours) >= 20 || number(hours) < 6; - total_history_bought_amount <= 64 ``` ## Product Stock Products can have their own inventory. Once stock is depleted, they can no longer be purchased. ```yml default-configs: stock: global: size: 1024 replenish: true overflow: true inherit: true ``` !(https://cdn.modrinth.com/data/cached_images/ff2eb5d52af7689ec5dfe8554abcdf7e7cbe7d19.png) ## Reusable Product Configurations For similar products (e.g., all colors of wool), you can reuse default configurations. This greatly reduces setup complexity. ```yml default-configs: item: amount: 16 buy-price: mean: 80 dev: 10 round: true sell-price: mean: 5 dev: 2 rarity: uncommon cacheable: true products: LIGHT_BLUE_WOOL: item: base: light_blue_wool YELLOW_WOOL: item: base: yellow_wool LIME_WOOL: item: base: lime_wool ``` !(https://cdn.modrinth.com/data/cached_images/60255f8977414207da7c861bc128300653c635a6.png) ## Product Rarity You can assign a rarity level to each product. This affects the probability of random listing and can also serve as decoration. ```yml rarities: common: name: "<gray>Common" weight: 100 uncommon: name: "<white>Uncommon" weight: 80 rare: name: "<dark_purple>Rare" weight: 60 ``` ## Bundle Products Products can be bundles that contain multiple other products. When calculating a bundle’s price, the total price of its contents is available as a context variable. ```yml products: WARM_COLOR_WOOL_BUNDLE: icon: base: barrel amount: 1 name: "<white>Warm toned wool bundle" lore: - "<gray>A bundle that contains all" - "<gold>warm toned<gray>wool." buy-price: formula: bundle_total_new * 0.8 sell-price: disable: true bundle-contents: - YELLOW_WOOL - BROWN_WOOL - MAGIC_ORANGE_WOOL - RED_WOOL:3 rarity: rare ``` !(https://cdn.modrinth.com/data/cached_images/c904c6257eac6e3a70b5cfce589f17bb6b097532.png) ## Basic Attribute Support Thanks to high-version `Data Component` features, th
Official Document:
# HyphaShop
A highly dynamic, script-assisted, high-performance shop plugin.
## Features
Progressive — advanced features are optional Random product pricing Random product quantity Conditional product listing Product stock Reusable product configurations (no need to repeat setups) Product rarity Bundle products Basic attribute support (Skull, Flag, Trim, Potion Effect, Custom Model Data) Automatic translation of Vanilla item names Merchant mode for shops Trade logging Unified cart-based transactions Fully translatable content Comprehensive GUI system JavaScript-like scripting system
## Progressive
If you only need a simple shop plugin to sell vanilla items, you can follow the configuration example in `product/wools.yml`.
All advanced features are completely optional and won’t consume extra cpu if unused.
## Random Product Pricing
Add the following configuration to enable random pricing like shown in the image:
```yml default-configs: buy-price: mean: 80 dev: 10 round: true sell-price: mean: 5 dev: 2 ```
!(https://cdn.modrinth.com/data/cached_images/732a730fcae61e5e2a8cda3cf2c4bbfd72e8409b.png)
## Random Product Quantity
Product quantity can accept a script string as a value. It can also adjust pricing based on quantity automatically.
```yml default-configs: item: amount: 8 + nextUniform(8, 16) buy-price: formula: base (1 + (Math.random() 2 - 1) buy_range) product_amount sell-price: formula: base (1 + (Math.random() 2 - 1) sell_range) product_amount
products: GOLD_ORE: item: base: gold_ore buy-price: context: const base = 200 sell-price: context: const base = 70 ```
!(https://cdn.modrinth.com/data/cached_images/0f37e6439082f68fdd1638a852b5fe708553e6dc.png)
## Conditional Product Listing
Scripts can participate in plugin logic at various hooks, including controlling whether a product is listed.
```yml default-configs: actions: on-before-list: - | const timeStr = papi("%world_time_world%").split(":"); const hours = timeStr; number(hours) >= 20 || number(hours) < 6; - total_history_bought_amount <= 64 ```
## Product Stock
Products can have their own inventory. Once stock is depleted, they can no longer be purchased.
```yml default-configs: stock: global: size: 1024 replenish: true overflow: true inherit: true ```
!(https://cdn.modrinth.com/data/cached_images/ff2eb5d52af7689ec5dfe8554abcdf7e7cbe7d19.png)
## Reusable Product Configurations
For similar products (e.g., all colors of wool), you can reuse default configurations. This greatly reduces setup complexity.
```yml default-configs: item: amount: 16 buy-price: mean: 80 dev: 10 round: true sell-price: mean: 5 dev: 2 rarity: uncommon cacheable: true
products: LIGHT_BLUE_WOOL: item: base: light_blue_wool
YELLOW_WOOL: item: base: yellow_wool
LIME_WOOL: item: base: lime_wool ```
!(https://cdn.modrinth.com/data/cached_images/60255f8977414207da7c861bc128300653c635a6.png)
## Product Rarity
You can assign a rarity level to each product. This affects the probability of random listing and can also serve as decoration.
```yml
rarities:
common:
name: "
## Bundle Products
Products can be bundles that contain multiple other products.
When calculating a bundle’s price, the total price of its contents is available as a context variable.
```yml
products:
WARM_COLOR_WOOL_BUNDLE:
icon:
base: barrel
amount: 1
name: "
!(https://cdn.modrinth.com/data/cached_images/c904c6257eac6e3a70b5cfce589f17bb6b097532.png)
## Basic Attribute Support
Thanks to high-version `Data Component` features, th
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- YK_DZ
- Version
- 0.5.1-Beta
- Downloads
- 359
- Endorsements
- 1
- Category
- economy
- Created
- 7/20/2025
- Updated
- 1/24/2026
- Game Versions
- 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
- Tags
- economy, game-mechanics, management
🔧 How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Plugins →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Plugins versions does HyphaShop support?
The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.
What is the latest version of HyphaShop?
Version 0.5.1-Beta, published 2026-01-24 with 359 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await