> For the complete documentation index, see [llms.txt](https://doku.xtream-itsolutions.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doku.xtream-itsolutions.com/fivem-bots/support-system/configuration.md).

# Configuration

In diesem Artikel wird dir die Benutzung des Discord Bots  <mark style="color:blue;">Standard System</mark> beschrieben.

## 1. Bot Daten

In der <mark style="color:yellow;">Config.js</mark> musst du nun deinen Discord Bot Token angeben, und weitere Informationen.

```javascript
config.bot = {
    token: "", // Bot Token (https://discord.com/developers)
    guildId: "",
    license: "",
    activity_enabled: true, // If disabled Bot wont override Activity (if multiple Bots are running on same Token)
    activitys: [
        {
            name: "",
            type: "Watching",
            status: "idle",
        },
        {
            name: "",
            type: "Playing",
            status: "online",
        },
    ],
    intervall: 10 * 1000, // Intervall of Activity Change
};
```

## 2. Database Setup   &#x20;

In der <mark style="color:yellow;">Config.js</mark> musst du deine [<mark style="color:blue;">MySQL</mark>](https://www.mysql.com/de/) Datenbank angeben.

```javascript
config.database = {
    mysql: {
        host: "",
        user: "",
        password: "",
        database: ""
    }
};
```

***

{% content-ref url="/pages/BipXPegDiq90PUHicOYv" %}
[Broken mention](broken://pages/BipXPegDiq90PUHicOYv)
{% endcontent-ref %}
