XAuctions [1.18 - 1.21] icon

XAuctions [1.18 - 1.21] -----

All in one auction house plugin with easy to use gui and categories





about.png


XAuctions is an auction plugin with different categories where players can bid on auctions. The menu is very easy to use and you can view your own auctions and bids. All auctions will be saved during a server restart. If you have any problems or questions, please contact me on Discord: norius_tv



features.png


Auction:
When creating an auction, you can set a starting bid and the duration of the auction. The auction is assigned to a category based on the item. Players with the “xauctions.remove” permission can delete other auctions by clicking on delete auction in the auction menu.


create-auction.png


Bids:
Players can place bids on the auctions and thus participate in an auction. If a player is outbid, their bid will be refunded. The player with the highest bid receives the item at the end of the auction.



Different categories:
In the GUI menu, auctions are sorted according to the categories Armor, Tools, Blocks, Op-Items, Spawneggs and other items. The associated items for each category can be set in the categories.yml configuration file.


auction-preview.png


GUI:
In the gui you have an overview of all auctions and can sort them by highest bid, lowest bid, most bids, and ending soon. You can also use the search item to search for auctions via an anvil inventory. In the overview menu you can choose between the menus my bids, my auctions, statistics and create auction.

auction-house.png overview.png

search.png


Auction-Slots:
There is a limited number of auction slots that can be set in the config. Players can buy additional auction slots for money.


Stats tracking:
Statistics such as auctions created, highest bid or money spent are saved for each player.


MySQL, SQLite Support:
If required, you can enter the data for a database connection in the config. Otherwise SQLite is used. All database queries while the server is online are asynchronous and are loaded from a connection pool (max connections and time out seconds can be set in the config).


Commands:

  • /auctionhouse [/ah] <player> - Opens the auction house menu, if a player is specified, the menu with the player's auctions is opened. | xauctions.ah.other
  • /ahslots <player> <slots> - With this command you can set the auction slots of a player. | xauctions.slots
  • /ahopen <player> - With this command a player or the console can open an auction house menu for another player | xauctions.openah




requirments.png


  • compatible with Java 17 or higher
  • Vault is required for an economy system. If you don’t use Vault, the economy system from XAuctions is used. There is an api with which you can update and query account balance
Code (Java):
// get hook
        XAuctions xAuctions = (XAuctions ) Bukkit. getPluginManager ( ). getPlugin ( "XAuctions" ) ;
        EcoHook eco = xAuctions. getEconomy ( ). getHook ( ) ;

        // load Offline player
        OfflinePlayer player = Bukkit. getOfflinePlayer ( "player" ) ;
   
        // withdraw money
        eco. withdraw (player, 100 ) ;
   
        // deposit money
        eco. deposit (player, 100 ) ;
   
        // get money
        double money = eco. get (player ) ;
   
        // set money
        eco. set (player, 100 ) ;
   
        // check if player has amount of money
        boolean has = eco. has (player, 100 ) ;


config.png


All messages are 100% configureable. The languages English and German are already preconfigured. If a different language is required, a new file in this language can be created in the lang folder. The language can then be set in the Config. There is HEX color support for all messages!

Code (YAML):
language : "EN"
prefix
: "&c&lXAuctions &8»"
database
:
  max-connections
: 10
  time-out-seconds
: 10
  mysql
:
    use
: false
    host
: "localhost"
    port
: "3306"
    database
: ""
    username
: "root"
    password
: ""

announce-updates
: true

default-auction-slots
: 3
max-auction-slots
: 5
price-per-auction-slot
: 250000.0

click-delay-millis
: 400

auction
:
  # creation fee in percent from the auction price
  creation-percent-fee
: 0.5

  # creation fee in $ per action
  creation-fee
: 1000

  # taxes in percent when the auction ends
  taxes-percent
: 3.0 [/FONT ] [/LEFT ]
[CENTER ] [FONT=Verdana ]
Code (YAML):
# Here you can put each material in a category
# The lists can be expanded as desired
# Materials that are not contained in this file are getting put in the OTHERS-category
ARMOR
:
 - "LEATHER_BOOTS"
  - "LEATHER_CHESTPLATE"
  - "LEATHER_HELMET"
  - "LEATHER_LEGGINGS"
  - "CHAINMAIL_BOOTS"
  - "CHAINMAIL_CHESTPLATE"
  - "CHAINMAIL_HELMET"
  - "CHAINMAIL_LEGGINGS"
  - "IRON_BOOTS"
  - "IRON_CHESTPLATE"
  - "IRON_HELMET"
  - "IRON_LEGGINGS"
  - "GOLDEN_BOOTS"
  - "GOLDEN_CHESTPLATE"
  - "GOLDEN_HELMET"
  - "GOLDEN_LEGGINGS"
  - "DIAMOND_BOOTS"
  - "DIAMOND_CHESTPLATE"
  - "DIAMOND_HELMET"
  - "DIAMOND_LEGGINGS"
  - "NETHERITE_BOOTS"
  - "NETHERITE_CHESTPLATE"
  - "NETHERITE_HELMET"
  - "NETHERITE_LEGGINGS"

TOOLS
:
 - "WOODEN_SWORD"
  - "WOODEN_PICKAXE"
  - "WOODEN_AXE"
  - "WOODEN_SHOVEL"
  - "WOODEN_HOE"
  - "STONE_SWORD"
  - "STONE_PICKAXE"
  - "STONE_AXE"
  - "STONE_SHOVEL"
  - "STONE_HOE"
  - "IRON_SWORD"
  - "IRON_PICKAXE"
  - "IRON_AXE"
  - "IRON_SHOVEL"
  - "IRON_HOE"
  - "GOLDEN_SWORD"
  - "GOLDEN_PICKAXE"
  - "GOLDEN_AXE"
  - "GOLDEN_SHOVEL"
  - "GOLDEN_HOE"
  - "DIAMOND_SWORD"
  - "DIAMOND_PICKAXE"
  - "DIAMOND_AXE"
  - "DIAMOND_SHOVEL"
  - "DIAMOND_HOE"
  - "NETHERITE_SWORD"
  - "NETHERITE_PICKAXE"
  - "NETHERITE_AXE"
  - "NETHERITE_SHOVEL"
  - "NETHERITE_HOE"
  - "SHEARS"
  - "FLINT_AND_STEEL"
  - "FISHING_ROD"
  - "CARROT_ON_A_STICK"
  - "WARPED_FUNGUS_ON_A_STICK"
  - "BOW"
  - "CROSSBOW"
  - "SHIELD"
  - "TRIDENT"
  - "LEAD"
  - "CLOCK"
  - "COMPASS"

BLOCKS
:
 - "GRASS_BLOCK"
  - "STONE"
  - "GRANITE"
  - "POLISHED_GRANITE"
  - "DIORITE"
  - "POLISHED_DIORITE"
  - "ANDESITE"
  - "POLISHED_ANDESITE"
  - "DEEPSLATE"
  - "COBBLED_DEEPSLATE"
  - "TUFF"
  - "DRIPSTONE_BLOCK"
  - "CALCITE"
  - "SAND"
  - "RED_SAND"
  - "GRAVEL"
  - "CLAY"
  - "COAL_ORE"
  - "IRON_ORE"
  - "COPPER_ORE"
  - "GOLD_ORE"
  - "REDSTONE_ORE"
  - "DIAMOND_ORE"
  - "EMERALD_ORE"
  - "LAPIS_ORE"
  - "NETHER_GOLD_ORE"
  - "NETHER_QUARTZ_ORE"
  - "ANCIENT_DEBRIS"
  - "OBSIDIAN"
  - "BEDROCK"
  - "COBBLESTONE"
  - "MOSSY_COBBLESTONE"
  - "STONE_BRICKS"
  - "MOSSY_STONE_BRICKS"
  - "CRACKED_STONE_BRICKS"
  - "CHISELED_STONE_BRICKS"
  - "BRICKS"
  - "PRISMARINE"
  - "PRISMARINE_BRICKS"
  - "DARK_PRISMARINE"
  - "NETHERRACK"
  - "SOUL_SAND"
  - "SOUL_SOIL"
  - "BASALT"
  - "POLISHED_BASALT"
  - "BLACKSTONE"
  - "POLISHED_BLACKSTONE"
  - "END_STONE"
  - "PURPUR_BLOCK"
  - "PURPUR_PILLAR"
  - "CHISELED_PURPUR_BLOCK"
  - "QUARTZ_BLOCK"
  - "QUARTZ_PILLAR"
  - "CHISELED_QUARTZ_BLOCK"
  - "SMOOTH_QUARTZ"
  - "SANDSTONE"
  - "CHISELED_SANDSTONE"
  - "CUT_SANDSTONE"
  - "RED_SANDSTONE"
  - "CHISELED_RED_SANDSTONE"
  - "CUT_RED_SANDSTONE"
  - "TERRACOTTA"
  - "WHITE_TERRACOTTA"
  - "ORANGE_TERRACOTTA"
  - "MAGENTA_TERRACOTTA"
  - "LIGHT_BLUE_TERRACOTTA"
  - "YELLOW_TERRACOTTA"
  - "LIME_TERRACOTTA"
  - "PINK_TERRACOTTA"
  - "GRAY_TERRACOTTA"
  - "LIGHT_GRAY_TERRACOTTA"
  - "CYAN_TERRACOTTA"
  - "PURPLE_TERRACOTTA"
  - "BLUE_TERRACOTTA"
  - "BROWN_TERRACOTTA"
  - "GREEN_TERRACOTTA"
  - "RED_TERRACOTTA"
  - "BLACK_TERRACOTTA"
  - "GLASS"
  - "WHITE_STAINED_GLASS"
  - "ORANGE_STAINED_GLASS"
  - "MAGENTA_STAINED_GLASS"
  - "LIGHT_BLUE_STAINED_GLASS"
  - "YELLOW_STAINED_GLASS"
  - "LIME_STAINED_GLASS"
  - "PINK_STAINED_GLASS"
  - "GRAY_STAINED_GLASS"
  - "LIGHT_GRAY_STAINED_GLASS"
  - "CYAN_STAINED_GLASS"
  - "PURPLE_STAINED_GLASS"
  - "BLUE_STAINED_GLASS"
  - "BROWN_STAINED_GLASS"
  - "GREEN_STAINED_GLASS"
  - "RED_STAINED_GLASS"
  - "BLACK_STAINED_GLASS"
  - "CONCRETE"
  - "WHITE_CONCRETE"
  - "ORANGE_CONCRETE"
  - "MAGENTA_CONCRETE"
  - "LIGHT_BLUE_CONCRETE"
  - "YELLOW_CONCRETE"
  - "LIME_CONCRETE"
  - "PINK_CONCRETE"
  - "GRAY_CONCRETE"
  - "LIGHT_GRAY_CONCRETE"
  - "CYAN_CONCRETE"
  - "PURPLE_CONCRETE"
  - "BLUE_CONCRETE"
  - "BROWN_CONCRETE"
  - "GREEN_CONCRETE"
  - "RED_CONCRETE"
  - "BLACK_CONCRETE"
  - "CONCRETE_POWDER"
  - "WHITE_CONCRETE_POWDER"
  - "ORANGE_CONCRETE_POWDER"
  - "MAGENTA_CONCRETE_POWDER"
  - "LIGHT_BLUE_CONCRETE_POWDER"
  - "YELLOW_CONCRETE_POWDER"
  - "LIME_CONCRETE_POWDER"
  - "PINK_CONCRETE_POWDER"
  - "GRAY_CONCRETE_POWDER"
  - "LIGHT_GRAY_CONCRETE_POWDER"
  - "CYAN_CONCRETE_POWDER"
  - "PURPLE_CONCRETE_POWDER"
  - "BLUE_CONCRETE_POWDER"
  - "BROWN_CONCRETE_POWDER"
  - "GREEN_CONCRETE_POWDER"
  - "RED_CONCRETE_POWDER"
  - "BLACK_CONCRETE_POWDER"
  - "OAK_PLANKS"
  - "SPRUCE_PLANKS"
  - "BIRCH_PLANKS"
  - "JUNGLE_PLANKS"
  - "ACACIA_PLANKS"
  - "DARK_OAK_PLANKS"
  - "CRIMSON_PLANKS"
  - "WARPED_PLANKS"
  - "OAK_LOG"
  - "SPRUCE_LOG"
  - "BIRCH_LOG"
  - "JUNGLE_LOG"
  - "ACACIA_LOG"
  - "DARK_OAK_LOG"
  - "CRIMSON_STEM"
  - "WARPED_STEM"
  - "STRIPPED_OAK_LOG"
  - "STRIPPED_SPRUCE_LOG"
  - "STRIPPED_BIRCH_LOG"
  - "STRIPPED_JUNGLE_LOG"
  - "STRIPPED_ACACIA_LOG"
  - "STRIPPED_DARK_OAK_LOG"
  - "STRIPPED_CRIMSON_STEM"
  - "STRIPPED_WARPED_STEM"
  - "OAK_LEAVES"
  - "SPRUCE_LEAVES"
  - "BIRCH_LEAVES"
  - "JUNGLE_LEAVES"
  - "ACACIA_LEAVES"
  - "DARK_OAK_LEAVES"
  - "AZALEA_LEAVES"
  - "FLOWERING_AZALEA_LEAVES"
  - "ICE"
  - "PACKED_ICE"
  - "BLUE_ICE"
  - "SNOW_BLOCK"
  - "CACTUS"
  - "CLAY_BLOCK"
  - "HAY_BLOCK"
  - "SPONGE"
  - "WET_SPONGE"
  - "SLIME_BLOCK"
  - "HONEY_BLOCK"
  - "CRYING_OBSIDIAN"
  - "GLOWSTONE"
  - "SHROOMLIGHT"
  - "JACK_O_LANTERN"
  - "MELON"
  - "PUMPKIN"
  - "CARVED_PUMPKIN"
  - "SCAFFOLDING"
  - "OBSIDIAN"
  - "BEDROCK"
  - "NETHERITE_BLOCK"
  - "EMERALD_BLOCK"
  - "DIAMOND_BLOCK"
  - "IRON_BLOCK"
  - "GOLD_BLOCK"
  - "REDSTONE_BLOCK"
  - "LAPIS_BLOCK"
  - "HONEYCOMB_BLOCK"
  - "COPPER_BLOCK"
  - "EXPOSED_COPPER"
  - "WEATHERED_COPPER"
  - "OXIDIZED_COPPER"
  - "WAXED_COPPER_BLOCK"
  - "WAXED_EXPOSED_COPPER"
  - "WAXED_WEATHERED_COPPER"
  - "WAXED_OXIDIZED_COPPER"
  - "BONE_BLOCK"
  - "BEE_NEST"
  - "BEEHIVE"

OP
:
 - "BEACON"
  - "DRAGON_EGG"
  - "ELYTRA"
  - "TOTEM_OF_UNDYING"
  - "ENCHANTED_GOLDEN_APPLE"
 
Code (YAML):
general:
  usage
: "%prefix% &cBitte benutze: /%command%"
  player-offline
: "%prefix% &cDieser Spieler ist nicht online!"
  no-permission
: "%prefix% &cDu hast nicht genug Rechte, um diesen Befehl zu nutzen!"
  not-enough-money
: "%prefix% &cDafür hast du nicht genügend Geld!"
  update
: "&8[&c&lXAuctions&8] &aEs ist eine neue Version verfügbar!"
  invalid-bid-price
: "%prefix% &cDieser Preis ist ungültig!"
  bid
: "%prefix% &7Du hast &b%money%&7$ auf das Item &b%item% &7geboten."
  max-slots
: "%prefix% &cDu hast bereits die maximale Anzahl an Slots gekauft!"
  bought-slot
: "%prefix% &7Du hast einen neuen &bAuktions-Slot &7freigeschalten."
  inventory-full
: "%prefix% &cDein Inventar ist voll!"
  bid-message
: "%prefix% &7Der Spieler &b%player% &7hat &b%price%$ &7auf die Auktion &b%item% &7geboten."
  auction-deleted
: "%prefix% &7Du hast die Auktion von &b%player% &7mit dem Item &b%item% &cgelöscht&7."
  set-slots
: "%prefix% &7Du hast die &bAuktions-Slots &7von &b%player% &7auf &b%slots% &7gesetzt."
  auction-ended-owner
: "%prefix% &7Deine Auktion &b%item% &7ist ausgelaufen."
  auction-ended-bidder
: "%prefix% &7Die Auktion &b%item% &7von &b%player% &7ist ausgelaufen."
  invalid-slots
: "%prefix% &cBitte gib eine Zahl zwischen 0 und 100 an!"
gui
:
  selected-symbol
: "&7» "
  not-selected-symbol
: "&7• "

  next-page
: "&7Weiter"
  last-page
: "&7Zurück"

  anvil
:
    text
: "Hier eingeben"
    invalid-input
: "Ungültige Eingabe"
    search-title
: "%prefix% Item suchen"
    start-balance-title
: "%prefix% Startgebot"
    bid-title
: "%prefix% Bieten"

  auction-lore
:
    days
: "Tage"
    hours
: "Stunden"
    minutes
: "Minuten"
    seconds
: "Sekunden"
    expired
: "&cAuktion beendet"
    default
:
     - "&8&m                             "
      - "&7Spieler
: &b%player%"
      - ""
    start-bid
:
      - "&7Startgebot
: &b%money%&7$"
    bids
:
      - "&7Aktuelles Gebot
: &b%money%&7$"
      - "&7Von
: &b%player%"
      - ""
      - "&7Gesamt Gebote
: &b%bids%"
    end
:
     - ""
      - "&7Endet in
: &b%time%"

  categories
:
    armor
:
      name
: "&c&lRüstung"
      material
: DIAMOND_CHESTPLATE
    tools
:
      name
: "&c&lWerkzeuge"
      material
: NETHERITE_SWORD
    blocks
:
      name
: "&c&lBlöcke"
      material
: GRASS_BLOCK
    op
:
      name
: "&c&lOP Items"
      material
: GOLDEN_APPLE
    spawn_eggs
:
      name
: "&c&lSpawn Eggs"
      material
: HORSE_SPAWN_EGG
    other
:
      name
: "&c&lAnderes"
      material
: FEATHER
  auction-house
:
    title
: "%prefix% Auktionshaus"
    search-name
: "&c&lSuche"
    sort
:
      name
: "&c&lSortierung"
      lore
:
        highest_bids
: "&bHöchste Gebote"
        lowest_bids
: "&bNiedrigste Gebote"
        most_bids
: "&bMeiste Gebote"
        ending_soon
: "&bBald endend"
    overview-name
: "&c&lDeine Übersicht"
    overview-lore
:
     - ""
      - "&7Hier kannst du deine Auktionen einsehen, "
      - "&7neue erstellen und Auktionen sehen,"
      - "&7auf welche du geboten hast."
  overview
:
    title
: "%prefix% Deine Übersicht"
    create
: "&c&lAuktion Erstellen"
    cannot-create
: "&cAuktionsplätze voll"
    auctions
: "&c&lDeine Auktionen"
    bids
: "&c&lDeine Gebote"
    auction-places
:
      name
: "&c&lAuktionsplätze"
      lore
:
       - ""
        - "&7Aktuelle Plätze
: &b%current%"
        - "&7Gekaufte Plätze
: &b%bought%&7/&b%max%"
        - ""
        - "&7Preis pro Platz
: &b%price%&7$"
        - ""
        - "&cKlicke %clicks%x zum Kaufen"
    back
: "&7Zurück"
    stats
: "&c&lDeine Stats"
  stats
:
    title
: "%prefix% Deine Statistiken"
    seller
:
      name
: "&c&lVerkäufer Stats"
      lore
:
       - ""
        - "&7Verdientes Geld
: &b%earned_money%&7$"
        - "&7Höchste versteigerte Auktion
: &b%highest_held_auction%&7$"
        - ""
        - "&7Verkaufte Auktionen
: &b%sold_auctions%"
        - "&7Erstelle Auktionen
: &b%auctions%"
    buyer
:
      name
: "&c&lKäufer Stats"
      lore
:
       - ""
        - "&7Ausgegebenes Geld
: &b%spend_money%&7$"
        - "&7Höchstes Gebot
: &b%highest_bid%&7$"
        - ""
        - "&7Gewonnene Auktionen
: &b%won_auctions%"
        - "&7Gesamte Gebote
: &b%bids%"
  create-auction
:
    title
: "%prefix% Auktion erstellen"
    item-slot
:
      name
: "&cKein Item ausgewählt"
      lore
:
       - ""
        - "&7Klicke ein Item aus deinem"
        - "&7Inventar an, um es auszuwählen"
    start-balance
:
      name
: "&c&lStartgebot setzen"
      lore
:
       - ""
        - "&7Aktuell
: &b%money%&7$"
        - ""
        - "&7<Linksklick> &bStartgebot ändern"
        - "&7<Rechtsklick> &bStargebot entfernen"
    duration
:
      name
: "&c&lDauer wählen"
      durations
:
        five_min
: "&b5 Minuten"
        fifteen_min
: "&b15 Minuten"
        one_hour
: "&b1 Stunde"
        three_hours
: "&b3 Stunden"
        six_hours
: "&b6 Stunden"
        twelve_hours
: "&b12 Stunden"
        one_day
: "&b1 Tag"
        two_days
: "&b2 Tage"
        three_days
: "&b3 Tage"
    not-ready
: "&cNoch nicht bereit"
    ready
:
      message
: "%prefix% &7Du hast &berfolgreich &7eine Auktion erstellt!"
      error
: "&cDein ausgewähltes Item befindet sich nicht mehr in deinem Inventar!"
      name
: "&aAuktion erstellen"
      start-balance-lore
:
       - ""
        - "&7Startgebot Gebühr
: &b%fee%&7$ (&b %percent%% &7von &b%price%&7$)"
      lore
:
       - ""
        - "&7Erstellungsgebühr
: &b%creation_fee%&7$"
        - "&7Gesamtkosten
: &b%total_fee%&7$"
        - ""
        - "&7Verkaufsende
: &b%date% &7um &b %time% Uhr"
        - ""
        - "&cBitte beachte:"
        - "&c- Deine Auktion kann nicht abgebrochen werden"
        - "&c- Es werden %taxes%% Steuern auf den Gewinn erhoben"
  auction
:
    title
: "%prefix% Auktionshaus"
    head
: "&c&l%player%"
    clock
: "&c&lAuktionsende"
    bid
:
      name
: "&c&lBieten"
      current-bid
: "&7Aktuelles Gebot: &b%price%&7$"
      from
: "&7Von: &b%player%"
      add-bid
:
       - ""
        - "&7Du bietest
: &b%bid%&7$ &7 (&a+&b %surcharge%&7$&7)"
        - ""
        - "&cKlicke %number%x um das Gebot abzugeben"
        - "&7&oRechtsklick, um das Gebot zu ändern"
    bids
:
      name
: "&c&lAktuelle Gebote"
      no-bids
: "&cNoch keine Gebote"
      bid
: "&7• &b%player% &7- &b%price%&7$"
    remove
:
      name
: "&c&nAuktion entfernen"
      lore
:
       - ""
        - "&7Klicke &b%times%x&7, um diese Auktion zu löschen"
        - ""
        - "&cACHTUNG
: Diese Aktion kann nicht mehr "
        - "
&crückgängig gemacht werden! Das Item wird "
        - "
&cnicht rückerstattet. "
  my-auctions:
    title: "
%prefix% Deine Auktionen"
    hide-ended-auctions
: "&7Beendete Auktionen anzeigen: &cNein"
    show-ended-auctions
: "&7Beendete Auktionen anzeigen: &aJa"
    claimable
: "&aKlicke, um deine Items einzusammeln"
    expired
: "&cDiese Auktion endete am %date% Uhr"
    claim-money
: "&aKlicke, um &6%price%$ &aeinzusammeln"
  my-bids
:
    title
: "%prefix% Deine Gebote"
    hide-ended-bids
: "&7Beendete Gebote anzeigen: &cNein"
    show-ended-bids
: "&7Beendete Gebote anzeigen: &aJa"




 
Code (YAML):
general:
  usage
: "%prefix% &cPlease use: /%command%"
  player-offline
: "%prefix% &cThis player is not online!"
  no-permission
: "%prefix% &cYou do not have enough permissions to use this command!"
  not-enough-money
: "%prefix% &cYou don't have enough money for this!"
  update
: "&8[&c&lXAuctions&8] &aA new version is available! \n&f%link%"
  invalid-bid-price
: "%prefix% &cThis price is invalid!"
  bid
: "%prefix% &7You have bid &b%money%&7$ on the item &b%item%."
  max-slots
: "%prefix% &cYou have already purchased the maximum number of slots!"
  bought-slot
: "%prefix% &7You have unlocked a new &bauction slot&7."
  inventory-full
: "%prefix% &cYour inventory is full!"
  bid-message
: "%prefix% &7The player &b%player% &7has bid &b%price%$ &7on the auction for &b%item%."
  auction-deleted
: "%prefix% &7You have deleted the auction from &b%player% &7with the item &b%item%&7."
  set-slots
: "%prefix% &7You have set the &bauction slots &7of &b%player% &7to &b%slots%&7."
  auction-ended-owner
: "%prefix% &7Your auction for &b%item% &7has ended."
  auction-ended-bidder
: "%prefix% &7The auction for &b%item% &7from &b%player% &7has ended."
  invalid-slots
: "%prefix% &cPlease provide a number between 0 and 100!"
gui
:
  selected-symbol
: "&7» "
  not-selected-symbol
: "&7• "

  next-page
: "&7Next"
  last-page
: "&7Back"

  anvil
:
    text
: "Enter here"
    invalid-input
: "Invalid input"
    search-title
: "%prefix% Search item"
    start-balance-title
: "%prefix% Starting bid"
    bid-title
: "%prefix% Place bid"

  auction-lore
:
    days
: "Days"
    hours
: "Hours"
    minutes
: "Minutes"
    seconds
: "Seconds"
    expired
: "&cAuction ended"
    default
:
     - "&8&m                             "
      - "&7Player
: &b%player%"
      - ""
    start-bid
:
      - "&7Starting bid
: &b%money%&7$"
    bids
:
      - "&7Current bid
: &b%money%&7$"
      - "&7By
: &b%player%"
      - ""
      - "&7Total bids
: &b%bids%"
    end
:
     - ""
      - "&7Ends in
: &b%time%"

  categories
:
    armor
:
      name
: "&c&lArmor"
      material
: DIAMOND_CHESTPLATE
    tools
:
      name
: "&c&lTools"
      material
: NETHERITE_SWORD
    blocks
:
      name
: "&c&lBlocks"
      material
: GRASS_BLOCK
    op
:
      name
: "&c&lOP Items"
      material
: GOLDEN_APPLE
    spawn_eggs
:
      name
: "&c&lSpawn Eggs"
      material
: HORSE_SPAWN_EGG
    other
:
      name
: "&c&lOther"
      material
: FEATHER
  auction-house
:
    title
: "%prefix% Auction House"
    search-name
: "&c&lSearch"
    sort
:
      name
: "&c&lSort"
      lore
:
        highest_bids
: "&bHighest bids"
        lowest_bids
: "&bLowest bids"
        most_bids
: "&bMost bids"
        ending_soon
: "&bEnding soon"
    overview-name
: "&c&lYour Overview"
    overview-lore
:
     - ""
      - "&7Here you can view your auctions,"
      - "&7create new ones, and see auctions"
      - "&7you have bid on."
  overview
:
    title
: "%prefix% Your Overview"
    create
: "&c&lCreate Auction"
    cannot-create
: "&cAuction slots full"
    auctions
: "&c&lYour Auctions"
    bids
: "&c&lYour Bids"
    auction-places
:
      name
: "&c&lAuction Slots"
      lore
:
       - ""
        - "&7Current slots
: &b%current%"
        - "&7Purchased slots
: &b%bought%&7/&b%max%"
        - ""
        - "&7Price per slot
: &b%price%&7$"
        - ""
        - "&cClick %clicks%x to purchase"
    back
: "&7Back"
    stats
: "&c&lYour Stats"
  stats
:
    title
: "%prefix% Your Statistics"
    seller
:
      name
: "&c&lSeller Stats"
      lore
:
       - ""
        - "&7Money earned
: &b%earned_money%&7$"
        - "&7Highest auction sold
: &b%highest_held_auction%&7$"
        - ""
        - "&7Auctions sold
: &b%sold_auctions%"
        - "&7Auctions created
: &b%auctions%"
    buyer
:
      name
: "&c&lBuyer Stats"
      lore
:
       - ""
        - "&7Money spent
: &b%spend_money%&7$"
        - "&7Highest bid
: &b%highest_bid%&7$"
        - ""
        - "&7Auctions won
: &b%won_auctions%"
        - "&7Total bids
: &b%bids%"
  create-auction
:
    title
: "%prefix% Create Auction"
    item-slot
:
      name
: "&cNo item selected"
      lore
:
       - ""
        - "&7Click an item from your"
        - "&7inventory to select it"
    start-balance
:
      name
: "&c&lSet starting bid"
      lore
:
       - ""
        - "&7Current
: &b%money%&7$"
        - ""
        - "&7<Left-click> &bChange starting bid"
        - "&7<Right-click> &bRemove starting bid"
    duration
:
      name
: "&c&lSelect duration"
      durations
:
        five_min
: "&b5 minutes"
        fifteen_min
: "&b15 minutes"
        one_hour
: "&b1 hour"
        three_hours
: "&b3 hours"
        six_hours
: "&b6 hours"
        twelve_hours
: "&b12 hours"
        one_day
: "&b1 day"
        two_days
: "&b2 days"
        three_days
: "&b3 days"
    not-ready
: "&cNot ready yet"
    ready
:
      message
: "%prefix% &7You have &bsuccessfully &7created an auction!"
      error
: "&cThe selected item is no longer in your inventory!"
      name
: "&aCreate auction"
      start-balance-lore
:
       - ""
        - "&7Starting bid fee
: &b%fee%&7$ (&b %percent%% &7of &b%price%&7$)"
      lore
:
       - ""
        - "&7Creation fee
: &b%creation_fee%&7$"
        - "&7Total cost
: &b%total_fee%&7$"
        - ""
        - "&7Sale ends
: &b%date% &7at &b %time% o'clock"
        - ""
        - "&cPlease note:"
        - "&c- Your auction cannot be cancelled"
        - "&c- %taxes%% tax will be applied to the earnings"
  auction
:
    title
: "%prefix% Auction House"
    head
: "&c&l%player%"
    clock
: "&c&lAuction end"
    bid
:
      name
: "&c&lBid"
      current-bid
: "&7Current bid: &b%price%&7$"
      from
: "&7From: &b%player%"
      add-bid
:
       - ""
        - "&7You are bidding
: &b%bid%&7$ &7 (&a+&b %surcharge%&7$&7)"
        - ""
        - "&cClick %number%x to place the bid"
        - "&7&oRight-click to change the bid"
    bids
:
      name
: "&c&lCurrent bids"
      no-bids
: "&cNo bids yet"
      bid
: "&7• &b%player% &7- &b%price%&7$"
    remove
:
      name
: "&c&nRemove auction"
      lore
:
       - ""
        - "&7Click &b%times%x&7 to delete this auction"
        - ""
        - "&cWARNING
: This action cannot be "
        - "
&cundone! The item will "
        - "
&cnot be refunded. "
  my-auctions:
    title: "
%prefix% Your Auctions"
    hide-ended-auctions
: "&7Show ended auctions: &cNo"
    show-ended-auctions
: "&7Show ended auctions: &aYes"
    claimable
: "&aClick to collect your items"
    expired
: "&cThis auction ended on %date% o'clock"
    claim-money
: "&aClick to collect &6%price%$"
  my-bids
:
    title
: "%prefix% Your Bids"
    hide-ended-bids
: "&7Show ended bids: &cNo"
    show-ended-bids
: "&7Show ended bids: &aYes"
 
Resource Information
Author:
----------
Total Downloads: 6
First Release: Nov 9, 2024
Last Update: Nov 9, 2024
Category: ---------------
All-Time Rating:
0 ratings
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings