> For the complete documentation index, see [llms.txt](https://edseries-plugins.gitbook.io/p/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://edseries-plugins.gitbook.io/p/pinnaprison/reference/placeholders.md).

# Placeholders

PinnaPrison registers a PlaceholderAPI expansion with the identifier **`pinnaprison`**. Use these anywhere PlaceholderAPI is supported (scoreboards, tab, holograms, this plugin's own menus, etc.).

{% hint style="info" %}
`<currency>`, `<leveling>` and `<enchant>` are **ids** — the filenames in `currencies/`, `leveling/` and `enchants/`.
{% endhint %}

## Number formatting

Any **number-returning** placeholder accepts these suffixes:

| Suffix              | Output                                            |
| ------------------- | ------------------------------------------------- |
| `_formatted`        | the default style from `format.yml` (e.g. `1.5M`) |
| `_formatted_pretty` | always pretty (`1,500,000`)                       |
| `_formatted_abbrev` | always abbreviated (`1.5M`)                       |

Standalone number formatting:

```
%pinnaprison_notation_<number>%
%pinnaprison_notation_pretty_<number>%
%pinnaprison_notation_abbrev_<number>%
%pinnaprison_calc_<expression>%          (supports _formatted… suffixes)
```

## Currencies

```
%pinnaprison_currency_balance_<currency>%
%pinnaprison_currency_balance_<currency>_formatted%
```

## Leveling

```
%pinnaprison_leveling_balance_<leveling>%
%pinnaprison_leveling_balance_<leveling>_formatted%
%pinnaprison_leveling_bar_<leveling>%          (progress bar)
%pinnaprison_leveling_progress_<leveling>%     (progress %)
```

## Enchants

```
%pinnaprison_enchant_level_<enchant>%
%pinnaprison_enchant_chance_<enchant>%
%pinnaprison_enchant_prestige_<enchant>%
%pinnaprison_enchant_prestige_stars_<enchant>%
%pinnaprison_enchant_prestige_enabled_<enchant>%
%pinnaprison_enchant_prestige_canprestige_<enchant>%
%pinnaprison_enchant_prestige_requirements_<enchant>%
%pinnaprison_enchant_prestige_max_<enchant>%
```

## Boosters

```
%pinnaprison_boosters_global_<currency>%   (current multiplier, incl. base; <currency> can be 'blocks')
%pinnaprison_boosters_global_enchants%
%pinnaprison_boosters_names_<currency>%
%pinnaprison_boosters_names_enchants%
```

## Blocks / autosell multiplier

```
%pinnaprison_blocks_multiplier%        total blocks multiplier (backpack + pickaxe skin + blocks boosters)
%pinnaprison_backpack_multiplier%      the backpack tier's blocks bonus
%pinnaprison_pickaxe_skin_name%        equipped pickaxe skin's name
%pinnaprison_pickaxe_skin_multiplier%  equipped pickaxe skin's blocks bonus
```

## Crystals

```
%pinnaprison_crystals_slots%
%pinnaprison_crystals_used%
```

## Backpack

```
%pinnaprison_backpack_autosell%
%pinnaprison_backpack_maxed%
%pinnaprison_backpack_currencyname%
%pinnaprison_backpack_size%
%pinnaprison_backpack_maxsize%
%pinnaprison_backpack_nextsize%
%pinnaprison_backpack_multiplier%
%pinnaprison_backpack_nextmultiplier%
%pinnaprison_backpack_cost%
```

## Autosell summary

```
%pinnaprison_summary_<currency>%   (earned since the last summary message)
```

## Local `{curly}` placeholders

Inside the plugin's own configs (holograms, messages, item lore) some `{curly}` placeholders are filled by context. The most useful ones — the **mine hologram** placeholders, always evaluated for the mine owner — are:

```
{mine-owner} {mine-type} {mine-size} {mine-tax}
{percent-mined} {percent-remaining} {percent-mined-bar}
{blocks-mined} {blocks-remaining} {blocks-total}
{player}
```

Other `{curly}` tokens are documented on the page of the feature that uses them (e.g. `{blocks}`/`{layers}` for drills, `{level}`/`{cost}` for upgrades, `{weight}`/`{size}` for backpacks).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://edseries-plugins.gitbook.io/p/pinnaprison/reference/placeholders.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
