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

# Installation

## Standardablauf für FiveM-Ressourcen

{% stepper %}
{% step %}

## Resource entpacken

Entpacke die Resource in deinen Serverordner, zum Beispiel `resources/[mb]/RESOURCE_NAME`.
{% endstep %}

{% step %}

## Abhängigkeiten installieren

Installiere die auf der jeweiligen Produktseite genannten Abhängigkeiten.
{% endstep %}

{% step %}

## SQL-Dateien importieren

Importiere mitgelieferte SQL-Dateien, sofern die Resource keine automatische Datenbankeinrichtung verwendet.
{% endstep %}

{% step %}

## Resource in der `server.cfg` ergänzen

Ergänze die Resource in der `server.cfg` nach ihren Abhängigkeiten:

```cfg
ensure ox_lib
ensure oxmysql
ensure es_extended
ensure RESOURCE_NAME
```

{% endstep %}

{% step %}

## Konfiguration anpassen

Passe `config.lua`, Jobs, Grades, Koordinaten, Itemnamen und Berechtigungen an.
{% endstep %}

{% step %}

## Auf einem Testserver prüfen

Starte die Resource zunächst auf einem Testserver und prüfe Server- sowie Client-Konsole.
{% endstep %}
{% endstepper %}

## Empfohlene Reihenfolge

```cfg
ensure oxmysql
ensure ox_lib
ensure ox_target
ensure ox_inventory
ensure es_extended
ensure DEINE_MB_RESOURCE
```

{% hint style="info" %}
Die tatsächliche Reihenfolge hängt vom Framework und der jeweiligen Resource ab. Nutze deshalb immer die Angaben der Produktseite.
{% endhint %}

## Premium-Auslieferung

{% hint style="warning" %}
Lege kostenpflichtige ZIP-Dateien nicht in ein öffentliches Git-Repository.
{% endhint %}

Verwende den Shop für Kauf, Lizenzprüfung und Download und verlinke im GitBook nur auf die Produktseite.


---

# 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://mb-development.gitbook.io/mb-development-docs/dokumentation/installation.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.
