- Added new GUI
confirm-remove.yml
- Added new command /ah remove <id>. Allows the player (with permission) to remove an active listing.
- Added new config options:
Code (YAML):
# ----------------------------------
# AUCTIONS
# ----------------------------------
auctions
:
# --- Remove Process ---
confirm-remove
: true
# Enable confirmation before removing an item
remove-expire-time
: 60
# Seconds before confirmation request expires if Confirm GUI is disabled (-1 to disable)
Code (YAML):
commands
:
# Requires restart to reflect changes
main:
name
:
"auctionhouse"
aliases
:
[ah, auctions
]
usage
:
"/%label% [subcommand] [...]"
subcommands:
remove:
enabled
: true
name
:
"remove"
usage
:
"/%label% %sublabel% <id>"
- Fixed item names in
filter.yml
- Added new message keys:
Code (YAML):
# -----------------------------
# AUCTIONS
# -----------------------------
auctions:
remove:
error:
not-found
:
"%prefix% <red>ID not found or is not active on the Auction House!</red>"
confirmation:
request
:
"%prefix% <white>Removing <aqua>%amount%x %item%</aqua> <gold>#%id%</gold> <white>(Seller: %seller%)</white>.<newline>%prefix% <yellow>Type again to confirm.</yellow>"
expired
:
"%prefix% <#ff5f6d>Remove confirmation for <white>x%amount% %item% <gold>#%id%</gold> (Seller: %seller%)</white> expired.</#ff5f6d>"
removed
:
"%prefix% <green>You removed your own listing from the Auction House.</green> <gray>(<white>%amount%x %item% #%id%</white>)</gray>"
removed-for
:
"%prefix% <green>Listing removed from the Auction House.</green> <gray>(<white>%amount%x %item% #%id%</white> from seller %seller%)</gray>"
removed-by
:
"%prefix% <red>Your listing <gray>(<white>%amount%x %item% #%id%</white>)</gray> was removed from the Auction House by <dark_red>%player%</dark_red>."
- Minor bug fixes