Placeholder
Plugins supported placeholder
Player-Specific Placeholders
These placeholders require a player context and show information about that specific player.
| Placeholder | Description | Example Output |
|---|---|---|
%laagbounty_player_bounty% | Player's total bounty amount | 1500.00 |
%laagbounty_player_bounty_formatted% | Player's bounty with comma formatting | 1,500.00 |
%laagbounty_player_has_bounty% | Whether player has a bounty (true/false) | true |
%laagbounty_player_rank% | Player's rank in top bounties (0 if no bounty) | 3 |
%laagbounty_player_contributors% | Number of players who placed bounty on this player | 5 |
Backward Compatibility Placeholders
| Placeholder | Description | Example Output |
|---|---|---|
%laagbounty_amount% | Same as player_bounty | 1500.00 |
%laagbounty_has_bounty% | Yes/No format | Yes |
Top Bounty Leaderboard Placeholders
These placeholders work without player context and are perfect for NPCs, signs, holograms, and leaderboards.
Replace X with any number (1, 2, 3, etc.)
| Placeholder | Description | Example Output |
|---|---|---|
%laagbounty_top_X_player% | Name of player at rank X | Steve |
%laagbounty_top_X_amount% | Bounty amount at rank X | 2500.00 |
%laagbounty_top_X_amount_formatted% | Bounty amount with commas | 2,500.00 |
%laagbounty_top_X_uuid% | UUID of player at rank X | uuid-string |
Examples:
%laagbounty_top_1_player%- Top 1 player name%laagbounty_top_1_amount%- Top 1 bounty amount%laagbounty_top_2_player%- Top 2 player name%laagbounty_top_3_amount_formatted%- Top 3 bounty with comma formatting%laagbounty_top_10_player%- Top 10 player name
Global Statistics Placeholders
These work without player context and show server-wide statistics.
| Placeholder | Description | Example Output |
|---|---|---|
%laagbounty_total_bounties% | Total number of active bounties | 15 |
%laagbounty_total_amount% | Total amount of all bounties | 25000.00 |
%laagbounty_total_amount_formatted% | Total amount with comma formatting | 25,000.00 |
Notes
- Top rankings are sorted by total bounty amount (highest to lowest)
- If a rank doesn't exist (e.g., top_100 when only 10 bounties exist), it returns "N/A" for player names and "0.00" for amounts
- Player-specific placeholders return "0" or "false" when player has no bounty
- All amounts are formatted to 2 decimal places
- Formatted versions use comma separators for thousands