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

# Einrichtung

Im Script Ordner findest du die Datei **config.lua** welche du einmal Öffnen Musst

* In der **config.lua** findest du verschiedenste Einstellungen

### 1. Wichtiege Einstellungen

* Maximale Höhe Findest du Ganz Oben

```
Config.MaxHeight = 0.15
```

* Wie Weit soll der Sound Gehört Werden (Standart liegt bei 30.0 Meter)

```
Config.SoundRadius = 30.0
```

* Die Maximale Geschwindigkeit um den Bus Hochpumpen zu Können, Sollte man über die Angegebene Geschwindigkeit Fahren Pumpt sich das Fahrzeug automatisch wieder Runter.

```
Config.SpeedLimit = 30.0
```

* Fahrzeuge Hinzufügen Findest du ganz Unten, Jedes Fahrzeug muss Ganz unten so Eingefügt Werden. **Das Letzte Fahrzeug darf aber Kein Komma mehr Haben**

```
"bus",
"bus2"
```

### 2. Sounds Ändern

Solltest du die Sounds Ändern wollen Musst du einmal in deinem Ordner Folgenden Pfad Folgen

foxfort\_bus\_kneeling/html/sounds/\*.ogg

Alle Sound dateien die Du Ändern willst Müssen am ende Genau so Wieder Heißen und auch eine **.ogg** Datei Sein.

```
airup ## Hochpump Sound
airdown ## Runterpump Sound
```

{% embed url="<https://convertio.co/de/mp3-ogg/>" %}

### 3. Config.lua

Hier nocheinmal die Ganze **config.lua**

```
Config = {}

-- Erlaubte Einstellungen
Config.MaxHeight = 0.15
Config.SoundUp = "airup"
Config.SoundDown = "airdown"
Config.SoundRadius = 30.0
Config.SpeedLimit = 30.0 -- km/h Grenze fürs Hochpumpen

-- Sync Interval (ms pro Fahrzeug)
Config.SyncInterval = 150

-- Text wenn man zu Schnell ist
Config.Messages = {
    TooFast = "Du kannst den Bus nur unter ~b~30 km/h~w~ hochpumpen!"
}

-- Erlaubte Fahrzeuge
Config.AllowedVehicles = {
    "bus",
    "airbus"
}

```

Hier Unten Findest du jetzt die Ingame Bedinung

{% content-ref url="/pages/ofVbiew6QDpRnJ7PPlUZ" %}
[Bedinung](/kurtmodz/bus-kneeling/bedinung.md)
{% endcontent-ref %}


---

# 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://kurtmodz.gitbook.io/kurtmodz/bus-kneeling/einrichtung.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.
