> For the complete documentation index, see [llms.txt](https://airdevelopment.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://airdevelopment.gitbook.io/docs/aircore/overview.md).

# Overview

## Common questions

<details>

<summary>How can I migrate data from another plugin?</summary>

`/aircore migrate` imports player and server data from an older setup into AirCore. You can also include `spawn`, `warp` and `kit` files on the same folder to migrate.

Currently, it supports these sources:

| Source         | Default path          |
| -------------- | --------------------- |
| EssentialsX    | `plugins/Essentials/` |
| AirCore <2.0.0 | `plugins/`            |

#### Syntax

```
/aircore migrate <essentials|legacy> [path] [--dry-run] [--overwrite] [--force]
```

* `path` is optional. If omitted, AirCore looks in the default path above.
* Must be run from console, not in-game.

#### Flags

* `--dry-run`: does a full read and prints the same report, but writes nothing. Use this first to see what would happen.
* `--overwrite`: replaces existing entries (players, warps, spawns, kits) instead of skipping them. Nickname conflicts and duplicate home names are always skipped regardless.
* `--force`: lets the migration run even if players are currently online. Without it, the command blocks and asks you to kick everyone first.

#### Recommended steps

1. Back up your database.
2. Run with `--dry-run` first and check the numbers/warnings in the report.
3. Run for real (drop `--dry-run`).
4. Restart the server before letting players back in.

</details>

<details>

<summary>Can I disable features I don't need?</summary>

Absolutely. Every feature can be enabled or disabled independently. For instance, if you only need chat features, disable the rest and use AirCore as a dedicated chat plugin.

</details>

<details>

<summary>Where can I edit item values and modifiers?</summary>

You can edit them under `data/worth/`.

</details>

<details>

<summary>How can I show real names instead of nicknames?</summary>

Use the `_realname%` prefix. This works with any placeholder that returns a player name.

</details>

<details>

<summary>Why can I have a negative balance or make payments with one?</summary>

This isn't a bug. Operators and players with `aircore.bypass.economy.balance.negative` are allowed to have a negative balance.

</details>


---

# 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://airdevelopment.gitbook.io/docs/aircore/overview.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.
