Olzie Development
HomeDiscord
  • Introduction
  • Minecraft Plugins
    • Player Auctions
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
        • Database FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
        • Creating expansions
          • Auction Currency
          • Auction Product
          • Auction Converter
        • Creating Commands
        • Using Events
      • Rest API
        • Endpoints
          • GET
            • /api/playerauctions/getPlayerAuctionByID/{id}
            • /api/playerauctions/getRecentAuctionsByUUID/{page}
            • /api/playerauctions/getPlayerAuctions/{page}
            • /api/playerauctions/getAuctionCategoryByName/{categoryname}
            • /api/playerauctions/getAuctionCategories/{page}
            • /api/playerauctions/getAuctionPlayerByUUID/{uuid}
          • DELETE
            • /api/playerauctions/deleteRecentAuctionByID/{id}
        • Events
          • PlayerAuctionSellEvent
          • PlayerAuctionBuyEvent
          • PlayerAuctionBidEvent
          • PlayerAuctionBidWonEvent
          • PlayerAuctionRemoveEvent
          • AuctionExpireUpdateEvent
          • AuctionPlayerUpdateEvent
          • PlayerAuctionUpdateEvent
        • Errors
    • Player Economy
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Lang Configuration
      • FAQ
        • Database FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
        • Creating Commands
        • Using Events
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Player Warps
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
        • Database FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
        • Creating expansions
          • Warp Addon
          • Warp Map Addon
          • Warp Converter
          • Warp Currency
        • Creating Commands
        • Using Events
      • Rest API
        • Endpoints
          • GET
            • /api/playerwarps/getPlayerWarpByName/{warpname}
            • /api/playerwarps/getSponsorWarp/{id}
            • /api/playerwarps/getPlayerWarpByID/{id}
            • /api/playerwarps/getPlayerWarps/{page}
            • /api/playerwarps/getWarpCategoryByName/{categoryname}
            • /api/playerwarps/getWarpCategories/{page}
            • /api/playerwarps/getWarpPlayerByUUID/{uuid}
          • DELETE
            • /api/playerwarps/deletePlayerWarpByName/{warpname}
            • /api/playerwarps/deletePlayerWarpByID/{id}
        • Events
          • PlayerWarpTeleportEvent
          • PlayerWarpSponsorEvent
          • PlayerWarpRentEvent
          • PlayerWarpRemoveEvent
          • PlayerWarpCreateEvent
          • WarpPlayerUpdateEvent
          • PlayerWarpUpdateEvent
        • Errors
    • Player Businesses
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Player Trade
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Player Treasury
      • Commands & Permissions
      • Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Player Elections
      • Commands & Permissions
      • Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
    • Night Market
      • Commands & Permissions
      • Configuration
        • Item Configuration
        • Menu Configuration
        • Lang Configuration
      • FAQ
      • Supported Plugins
      • Plugin Features
      • Plugin API
        • Creating expansions
          • Market Currency
        • Creating Commands
        • Using Events
      • Rest API
        • Endpoints
          • GET
          • DELETE
        • Events
        • Errors
Powered by GitBook
On this page
  • 1. Why cant my players sell any items?
  • 2. Can I edit/remove/add auction categories?
  • 3. Why can't I add empty lines to item descriptions?
  • 4. Where do I change the category name?
  • 5. How do I change the currency prefix?
  • 6. When using a chat wait action why does my chat message get sent into chat?

Was this helpful?

  1. Minecraft Plugins
  2. Player Auctions

FAQ

Here you can view the frequent asked questions for Player Auctions, it might answer your question!

1. Why cant my players sell any items?

You will need a permissions plugin, and give them the permission pa.limit.<auctions>. For example: pa.limit.1 - can sell one item.

If you wish for players to have infinite auctions, you can give them pa.limit.*!

2. Can I edit/remove/add auction categories?

Yes, you can. You can go into the folder, /guis/category.yml and go to the bottom and manage the categories there.

3. Why can't I add empty lines to item descriptions?

There is a feature disabled by default the empty lines will automatically be removed in the description, you can disable this in the config.yml

4. Where do I change the category name?

You can change the category name in the guis/category.yml, some people do get confused between the difference of the item name and the category name. The category item name is under "name" whereas the category name is quite hidden, its the section name.

    all: # <--- # This is the name of category.
      displayname: "All" # <---- This is the display name of the category. This is what will be used to show to the player.
      name: "&bAll Auctions" # <---- this is the item name
      material: BOOK
      data: 0
      lore:
        - "&eClick&b to view all the auctions."
      slot: 4
      amount: 1

You might question yourself, how do you I specify its an all category if I change the name? Player Auctions will always recognise that the all category is the first category listed in the configuration file no matter what.

5. How do I change the currency prefix?

You can change the currency prefix in the category.yml where all the currencies are listed. Yes, we're aware its a very weird place to change it, but currencies are implemented as expansions so thats why they're listed there.

6. When using a chat wait action why does my chat message get sent into chat?

To fix chat messages from being sent into chat, go into your config.ymland go right to the bottom you'll see two settings wait-chat-event-priorityand use-paper-event, try disabling use-paper-eventand reload plugin. If it doesn't work, try changing the wait-chat-event-priorityto LOWEST, if that doesn't work, try enabling use-paper-eventagain with priority set to lowest. Unfortunately all chat plugins are different, they use different methods so you need to tell the plugin what works.

PreviousLang ConfigurationNextDatabase FAQ

Last updated 5 months ago

Was this helpful?