A Minecraft plugin that provides a player-driven marketplace with both fixed-price shops and timed auctions.
- Player Shops: List items for sale at fixed prices
- Paginated GUI: Browse items with easy navigation (36 items per page)
- Automatic Sorting: Items sorted by price from lowest to highest
- Item Management: Remove your listings anytime
- Economy Integration: Uses Vault for all transactions
- Listing Fees: Configurable fees for creating shop listings
- Sale Taxes: Configurable taxes on completed purchases
- Timed Auctions: List items with custom duration (1 minute to 24 hours)
- Competitive Bidding: Players compete with incremental bids
- Automatic Completion: Auctions end automatically when time expires
- Refund System: Previous bidders are refunded immediately when outbid
- Offline Support: Winners receive items even when offline
- Paginated GUI: Browse auctions with easy navigation (36 items per page)
- Listing Fees: Configurable fees for starting auctions
- Sale Taxes: Configurable taxes on completed auctions
- Minecraft Server: 1.21 or higher (Paper/Spigot)
- Java: 21 or higher
- Dependencies:
- Vault - Economy provider
- An economy plugin (e.g., EssentialsX, CMI)
- Download the latest
Shopping-X.X.X-all.jarfrom Releases - Place the JAR in your server's
plugins/folder - Ensure Vault and an economy plugin are installed
- Restart your server
- Configure permissions (all default to
true)
| Command | Description | Permission |
|---|---|---|
/shop |
Open the shop menu | shopping.menu |
/shop sell <price> |
List held item for sale | shopping.sell |
/shop remove |
Open menu to remove your items | shopping.remove |
| Command | Description | Permission |
|---|---|---|
/auction (or /auc) |
Open auction menu | shopping.auction |
/auction start <price> <minutes> |
Start auction with held item | shopping.auction.start |
/auction list |
List all active auctions (text) | shopping.auction.list |
/auction cancel |
Cancel all your auctions | shopping.auction.cancel |
/auction claim |
Claim won items from offline wins | shopping.auction.claim |
All permissions default to true (everyone has access):
shopping.menu # View shop
shopping.sell # Sell items
shopping.remove # Remove own items
shopping.auction # View auctions
shopping.auction.start # Start auctions
shopping.auction.bid # Bid on auctions
shopping.auction.list # List auctions
shopping.auction.cancel # Cancel auctions
shopping.auction.claim # Claim itemsThe plugin includes a comprehensive fee and tax system to generate server revenue and prevent spam listings.
Fees are configured in plugins/Shopping/fees.yml:
# Enable/disable fees and taxes system
enabled: true
# Listing fees (charged when creating listings)
listing:
enabled: true
flat_fee: 5.0 # Flat fee amount
percentage_fee: 0.05 # 5% of item price
max_percentage_fee: 100.0 # Maximum percentage fee
# Sale taxes (charged on completed sales)
sale_tax:
enabled: true
percentage: 0.10 # 10% tax on sale price
max_tax: 500.0 # Maximum tax amount
# Auction-specific fees
auction:
start_fee: 2.0 # Additional fee for starting auctions
sale_tax_percentage: 0.08 # 8% tax on auction sales- Shop Listing: $100 item = $5 + $5 (5%) = $10 total fee
- Shop Purchase: $100 item + $10 tax = $110 buyer pays, seller gets $90
- Auction Start: Listing fee + $2 auction fee
- Auction Sale: Seller gets winning bid minus tax
1. Hold the item you want to sell
2. Run: /shop sell 100
3. Pay listing fee ($5 + 5% of item price)
4. Item is listed for $100
5. When someone buys it, you receive the money minus tax
1. Hold the item you want to auction
2. Run: /auction start 50 30
3. Pay listing fee + auction start fee ($2)
4. Auction starts at $50 for 30 minutes
5. Highest bidder wins when time expires (minus tax)
1. Open auction menu: /auction
2. Click on any auction item
3. Automatically bids current price + $1
4. If outbid, you're refunded immediately
The plugin stores data in YAML files:
plugins/Shopping/items.yml- Shop listingsplugins/Shopping/auctions.yml- Active auctionsplugins/Shopping/pending_items.yml- Items waiting to be claimedplugins/Shopping/fees.yml- Fee and tax configuration
git clone https://github.com/Touchie771/Shopping.git
cd Shopping
./gradlew build
# Output: build/libs/Shopping-1.0.0-all.jar- Language: Java 21
- Build Tool: Gradle 8.5
- Framework: Paper/Spigot API 1.21
- Command Library: LiteCommands
- Economy: Vault API
- Components: Adventure API
- Issues: GitHub Issues
- Wiki: [Coming Soon]
- Discord: [Coming Soon]
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
This project is licensed under the MIT License - see the LICENSE file for details.
- Author: Touchie771
- Command Framework: LiteCommands by Rollczi
- Economy API: Vault