Supported Plugins

Here you can view all the supported extensions information for Player Auctions.

Vault

Player Auctions depends on Vault so you can use any of your favorite economy/permissions plugins that will be used in Player Auctions by hooking into Vault.

PlaceholderAPI

Player Auctions hooks into PlaceholderAPI so you can use the Player Auctions placeholders everywhere that supports PlaceholderAPI, here is a list of the current placeholders.

PlaceholderDescription

%pa_player_auctions%

View the amount of current auctions.

%pa_player_available%

View the amount of current auctions a player can sell.

%pa_player_maxauctions%

View the maximum amount of auctions that you can sell.

%pa_player_expired%

View the amount of expired auctions.

%pa_player_recent%

View the total amount of recent auctions.

%pa_player_recent_<type>%

View the amount of recent auctions for that type.

%pa_player_recent_spent_[when]%

View the amount the player has spent based on their recently bought. The when placeholder is optional and can either be: day, week, month & year

%pa_player_recent_earned_[when]%

View the amount the player has earned based on their recently sold. The when placeholder is optional and can either be: day, week, month & year

%pa_server_auctions%

View the amount of current auctions on the server.

%pa_server_auctions_<category>%

View the amount of current auctions for that category.

These are the current auction expansions, that hook into other plugins to change on how the plugin works. You can configure all these expansions and change how they work in the expansions.yml. Every expansion is configurable.

TokenManager

Player Auctions hooks into TokenManager as a currency so you can sell/purchase items on the auction house using this currency. Here is the default configuration for this addon.

  tokenmanager:
    # Do you want to enable the TokenManager currency?
    enabled: false
    # The name that is used in-game to decide what currency to use.
    name: "tokens"
    # The prefix of the price variable, this is how you want the variable to show when using the token currency.
    prefix: "%price% tokens"
    # The minimum amount they need to at least pay when using this currency in the confirmation GUI. Set to -1 to ignore.
    min-price-amount: 1

PlayerPoints

Player Auctions hooks into PlayerPoints as a currency so you can sell/purchase items on the auction house using this currency. Here is the default configuration for this addon.

  playerpoints:
    # Do you want to enable the PlayerPoints currency?
    enabled: false
    # The name that is used in-game to decide what currency to use.
    name: "points"
    # The prefix of the price variable, this is how you want the variable to show when using the points currency.
    prefix: "%price% points"
    # The minimum amount they need to at least pay when using this currency in the confirmation GUI. Set to -1 to ignore.
    min-price-amount: 1

BeastToken

Player Auctions hooks into BeastToken as a currency so you can sell/purchase items on the auction house using this currency. Here is the default configuration for this addon.

  beasttoken:
    # Do you want to enable the BeastToken currency?
    enabled: false
    # The name that is used in-game to decide what currency to use.
    name: "tokens"
    # The prefix of the price variable, this is how you want the variable to show when using the token currency.
    prefix: "%price% tokens"
    # The minimum amount they need to at least pay when using this currency in the confirmation GUI. Set to -1 to ignore.
    min-price-amount: -1

GemsEconomy

Player Auctions hooks into GemsEconomy as a currency so you can sell/purchase items on the auction house using this currency. Here is the default configuration for this addon.

  gemseconomy:
    # Do you want to enable the GemsEconomy currency?
    enabled: false
    # The name that is used in-game to decide what currency to use.
    name: "gems"
    # The prefix of the price variable, this is how you want the variable to show when using the token currency.
    prefix: "%price% gems"
    # The minimum amount they need to at least pay when using this currency in the confirmation GUI. Set to -1 to ignore.
    min-price-amount: -1
    # What is the gem currency player auctions should use? If this is not set, it will use the default currency.
    currency: ""

Last updated