jwauctionhouse is an advanced, fully-featured Auction House and Black Market plugin for Minecraft Bedrock (Endstone API). It relies on JWEconomy to handle transactions, providing a safe, automated, and highly interactive player-driven economy.
- Endstone API: The core bedrock server API.
- JWEconomy: Required to handle currency transactions. Ensure JWEconomy is loaded before jwauctionhouse. What makes jwauctionhouse stand out is its native UI Forms, Buy Orders Escrow system, and Perfect NBT Serialization, allowing players to trade heavily enchanted, named, and modified items without fear of data loss.
- Interactive Native GUI: Forget chat-based commands! jwauctionhouse uses beautiful, native Bedrock UI forms for browsing, searching, listing, and buying items.
- Sell Listings (Auction House): Players can hold an item and list it on the market for a specified price. Other players can browse the GUI and purchase it instantly.
- Buy Orders (Escrow System): A revolutionary feature. Players can place a "Buy Order" for an item they want. The money is immediately taken from their account and held in escrow. Other players can then fulfill this order by bringing the requested items, instantly receiving the escrowed money.
- 100% NBT Preservation: jwauctionhouse uses a custom JSON serializer. When an item is listed, all its data—Enchantments, Custom Names, Lore, Durability, and exact Item States—are perfectly serialized into the database and completely restored when purchased or reclaimed.
- Offline Delivery & Reclaim System: If a player buys your item while you are offline, or if your listing expires, the items/money are kept completely safe. Players can use the "Expired / Reclaim" menu to safely retrieve their items.
- Categorization & Search Engine: Items are grouped into configurable categories (Blocks, Tools, Misc, etc.). The GUI also features a live search function to find exact item matches.
- Listing Tax System: Server owners can configure a tax percentage applied when players list items, helping to prevent market spam and control inflation.
- Full Localization: Every GUI Title, Button text, and chat message is 100% configurable in the
messages.ymlfile, supporting full translation into any language.
| Command | Permission Node | Description |
|---|---|---|
/ah |
jwauctionhouse.command.ah |
Opens the main Black Market GUI. |
/ah sell <price> [amount] |
jwauctionhouse.command.ah |
Lists the item currently held in your main hand on the market. |
/ah search <keyword> |
jwauctionhouse.command.ah |
Quickly searches the market and opens a GUI with the results. |
/ah expired |
jwauctionhouse.command.ah |
Opens the GUI to view and reclaim expired, cancelled, or safely-stored items. |
/ah reload |
jwauctionhouse.command.ah.reload |
(Admin) Reloads config.yml, categories.yml, and messages.yml. |
/orders |
jwauctionhouse.command.ah |
Opens the Buy Orders GUI to browse requests or create a new order. |
- A player holds a Diamond Sword with Sharpness V in their hand.
- They type
/ah sell 5000. - The item is removed from their hand, serialized to JSON (saving the Sharpness V), and placed in the SQLite database.
- Player B opens
/ah, browses to "Tools & Weapons", sees the sword, and clicks "Buy". - Player B pays 5000 coins (handled via JWEconomy). The 5000 coins are transferred to Player A, and Player B receives the exact Sharpness V sword.
- Player A needs 64 Diamonds but nobody is selling them.
- Player A uses the GUI to create a Buy Order for
minecraft:diamond, quantity64, price100each. - Total cost is
6400. The server immediately deducts6400from Player A and holds it in the "Escrow" database. - Player B mines 64 Diamonds, opens
/orders, clicks Player A's order, and clicks "Fulfill". - Player B's diamonds are taken, and Player B immediately receives the
6400coins from escrow. The diamonds are placed into Player A's offline storage (reclaim menu).
jwauctionhouse generates three highly customizable files in its data folder:
Controls the core mechanics of the market.
market:
listing_tax_percent: 5.0 # Tax charged to LIST an item.
order_tax_percent: 2.0 # Tax charged to CREATE a buy order.
max_active_listings: 15 # Max items a player can sell at once.
max_active_orders: 5 # Max buy orders a player can have at once.
default_listing_duration_hours: 48 # How long until an item expires.
default_order_duration_hours: 72 # How long until a buy order expires.
min_listing_price: 1.0 # Minimum price for any listing/order.
max_listing_price: 1000000000.0 # Maximum allowed price.
disabled_items: # Items completely banned from the market.
- "minecraft:bedrock"
- "minecraft:barrier"Controls the categories shown in the Main Menu GUI. You can add your own categories, set the display name, choose an icon, and define which minecraft:id items belong inside it.
blocks:
display_name: "Blocks"
icon: "textures/blocks/grass_side_carried"
items:
- "minecraft:dirt"
- "minecraft:stone"
- "minecraft:cobblestone"Contains every single string of text used in the plugin. If you want to change the language to Vietnamese, Spanish, etc., or just change the color codes of the UI, do it here!