> For the complete documentation index, see [llms.txt](https://docs.xandtech.fr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.xandtech.fr/home/xplayercurrencies/getting-started/quick-start.md).

# Quick Start

This walks through the two example currencies XPlayerCurrencies ships with, then how to add your own.

## 1. Check your balance

As any player:

```
/currencies
```

Shows your balance for every enabled currency. With the default config, `coins` and `gems` are both already enabled, so you should see both.

## 2. Give yourself some money to test with

As an admin (`xplayercurrencies.admin`, default `op`):

```
/currencies admin give coins Steve 5000
```

Or, since `coins.yml` sets `command: coins`, the shorter scoped form works too:

```
/coins give Steve 5000
```

## 3. Try the bundled features

`coins.yml` ships with several features already turned on so there's something to test right away:

```
/coins shop        # the demo shop (buy/sell items)
/coins bank        # deposit/withdraw, earn interest
/coins top         # leaderboard
```

Kill a mob to see [kill coins](/home/xplayercurrencies/features/kill-coins.md) pay out (`coins.yml` has it enabled by default), and try `/currencies admin sellstick give Steve coins basic` to hand yourself a [sell stick](/home/xplayercurrencies/features/sell-sticks-and-sellall.md).

## 4. Create your own currency

Every currency is one file under `currencies/`. To make a new one:

1. Duplicate `currencies/coins.yml` (or `gems.yml`) as `currencies/<your-id>.yml` - the filename (without `.yml`) becomes the currency's id, used in every command and placeholder.
2. Edit `name-display`, `symbol`, `default-balance` and whichever feature sections you want (see [Currency Basics](/home/xplayercurrencies/configuration/currency-basics.md) and the Features section of this documentation for every option).
3. `/currencies admin reload`.

Your new currency now shows up in `/currencies`, `/currencies list`, and everywhere else, immediately.

## 5. Explore the admin GUI

```
/currencies admin gui
```

Opens an in-game menu to create/edit/delete currencies and tune most settings without touching YAML by hand - including the shop catalog, bank tiers, and black market pool.

Next: [Commands reference](/home/xplayercurrencies/reference/commands.md) or dive into a specific [feature](/home/xplayercurrencies/readme.md#features).


---

# 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://docs.xandtech.fr/home/xplayercurrencies/getting-started/quick-start.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.
