> For the complete documentation index, see [llms.txt](https://wiki.dyroxplays.de/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.dyroxplays.de/1vs1/konfiguration/kit-erstellung.md).

# Kit Erstellung

## Anleitung zur Erstellung und Speicherung von Kits im 1vs1 Plugin

### Schritt 1: Inventar einrichten

Richte dein Inventar so ein, wie das Kit sein soll. Dies umfasst Verzauberungen, Rüstung und andere Gegenstände.

### Schritt 2: Inventar als Kit speichern

Speichere dein Inventar als Kit mit folgendem Befehl:

```plaintext
/1vs1 saveKit <0-8>
```

* `<0-8>` steht für den Slot, in dem das Kit-Item im Inventar auf dem Server angezeigt werden soll (0 ist der erste Slot und 8 der letzte Slot).

### Schritt 3: Kit-Details in der `kits.yml` Datei anpassen (Optional)

1. Gehe in das Verzeichnis `/plugins/1vs1/kits.yml`.
2. Suche den Slot, den du zuvor eingetragen hast, z.B. `'0'`.
3. Passe den Eintrag wie folgt an:

   ```yaml
   '0':
     displayItem: STONE:0:&7ENTER HERE DISPLAYNAME
   ```
4. Das Format ist:

   ```yaml
   MATERIALNAME:SHORTID:DISPLAYNAME
   ```

   * `MATERIALNAME`: Der Name des Materials.
   * `SHORTID`: Ab Version 1.13 immer `0`.
   * `DISPLAYNAME`: Der Anzeigename des Kits, inklusive Farbcodes.

Beispiel:

```yaml
STONE_SWORD:0:&7StarterKit
```

### Schritt 4: Datei speichern und Server neustarten

1. Speichere die Datei `kits.yml`.
2. Starte den Server neu (ein Reload ist möglich, aber ein Neustart wird empfohlen).


---

# 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://wiki.dyroxplays.de/1vs1/konfiguration/kit-erstellung.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.
