> For the complete documentation index, see [llms.txt](https://tokens.thirdshift.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tokens.thirdshift.net/supported-plugins/bossshoppro.md).

# BossShopPro

Tokens automatically implements into BossShopPro in three ways, as Points, as Rewards, and as a PriceType. For each implementation you can simply put `tokens`as the value. To see an example shop [click here](https://pastebin.com/UKhgMvxk), or you can find the usage for each type below.

## Rewards

Rewards in BSP is what you get when you purchase something. Here is an example of a shop item that exchanges $100 currency for 1 Token.

```
Money100forToken1:
    PriceType: money
    Price: 100
    MenuItem:
      - type:EMERALD
      - amount:1
      - name:&61 Token
      - 'lore:&cPrice: $%price%'
    Message: '&aYou''ve purchased &e%reward%&a for &e$%price%'
    InventoryLocation: 1
    ExtraPermission: ''
    RewardType: tokens
    Reward: 1
```

{% hint style="warning" %}
Notice how the reward type is `tokens` all lowercase with an 's' on the end.
{% endhint %}

## PriceType

PriceTypes in BSP is what you pay to purchase something. Here is an example of a shop item that exchanges 1 Token for $100 currency.

```
Token1For100Money:
    PriceType: tokens
    Price: 1
    MenuItem:
      - type:DIAMOND
      - amount:1
      - name:&6$100 Money
      - 'lore:&cPrice: %price%'
    Message: '&aYou''ve purchased &e$%reward%&a for &e%price%'
    InventoryLocation: 2
    ExtraPermission: ''
    RewardType: MONEY
    Reward: 100
```

{% hint style="warning" %}
Notice how the PriceType is `tokens` all lowercase with an 's' on the end.
{% endhint %}


---

# 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, and the optional `goal` query parameter:

```
GET https://tokens.thirdshift.net/supported-plugins/bossshoppro.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
