New features:
• Added %perfbountys_bounty_self% to show the viewer's own bounty on tab, scoreboard, and chat
• Added top-list placeholders for rank name and amount (%perfbountys_top_1_name%, %perfbountys_top_1_amount%, and ranks 2–100)
• Added placeholders for total bounty pool, active bounty count, and how much you have contributed
New features:
• Bounty amounts can show as compact values (10K, 15M) or full numbers via money-format.mode in config
• K, M, B suffix casing is configurable in the suffixes list
Bug fixes:
• Search sign text now reads from search-sign in config after reload
• GUI click sounds no longer play on empty slots or twice when navigating pages
Code:# plugins/PerfBountys/config.yml — replace old money-format string with: money-format: mode: compact prefix: "$" pattern: "#,##0.##" decimal-places: 2 rounding: half_up compact: threshold: 1000 suffixes: - K - M - B - T
New features:
• You can use extra bounty command names from config (default /bountys) with the same actions as /bounty, including add, toggle, and reload
Code:# plugins/PerfBountys/config.yml — merge: bounty-command: force-override: true aliases: - bountys
New features:
• Added force-override so /bounty is always handled by PerfBountys, even when another plugin registers the same command
Code:# plugins/PerfBountys/config.yml — add (and bump config-version to 5): bounty-command: force-override: true aliases: []
Bug fixes:
• Fixed a MySQL setup error that left the database half-initialized and made /bounty silently do nothing on some servers
New features:
• Added full cross-server support for shared bounty networks
• Added a cross-server status command for admins
• Added player name tab completion for bounty and admin commands
Improvements:
• Bounty announcements now sync across connected servers
• Bounty displays refresh across servers after adds, claims, clears and expiries
Code:# plugins/PerfBountys/config.yml — add: cross-server: # Requires database.type: mysql and the same central economy on every backend. enabled: false server-id: "server-1" sync-interval-ticks: 40 event-retention-seconds: 300 # plugins/PerfBountys/plugin.yml — admin command usage now includes: # /perfbountys <reload|help|stats <player>|clear <player>|crossserver>
