> For the complete documentation index, see [llms.txt](https://itemsadder.devs.beer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://itemsadder.devs.beer/russian-work-in-progress/adding-content/vehicles.md).

# Vehicles

You can create simple limited vehicles to enhance the gameplay. These are pretty simple vehicles.

```yaml
info:
  namespace: my_vehicles
items:
  shopping_cart:
    enabled: true
    display_name: Shopping Cart
    permission: my_vehicles.ground.shopping_cart
    resource:
      material: PAPER
      generate: false
      model_path: item/shopping_cart
    behaviours:
      vehicle:
        sit_height: 2
        step_height: 0.1
        hitbox:
          length: 2
          width: 2.3
          height: 1
        speed:
          drive: 0.3
          jump: 0.3
        fuel:
          start: 60
          max: 300
          items:
            banana: 30
            pear: 30
        smoke:
          amount: 1
```

The default example pack contains some example vehicles, [download it here](https://github.com/ItemsAdder/OtherPacks/releases).

{% embed url="<https://www.youtube.com/watch?v=_pEd_25zINg>" %}

## Properties

#### `sit_height`

Height of the seat, where the player sits.

#### `step_height`

The max height the vehicle can auto-jump.

#### `hitbox`

The hitbox of the vehicle.

#### `speed`

The speed of the vehicle.

#### `fuel`

The items accepted by the vehicle (on interaction) to refill the fuel indicator.

#### `smoke`

The smoke to be spawned behind the vehicle.

## Creating advanced vehicles

You can create some advanced vehicles using the new entities system, like multiple seats, animations, sounds, etc.

Read more here:

{% content-ref url="/pages/-MHvW7jkdHIEML1D2oKn" %}
[Entities](/russian-work-in-progress/adding-content/entities.md)
{% endcontent-ref %}

### Example advanced vehicles pack

You can download an interesting advanced vehicles pack [here](https://www.spigotmc.org/resources/wheelchairs-rideable-wheelchairs-for-itemsadder.127743/).

{% embed url="<https://www.youtube.com/watch?v=XtcMQM_xYgU>" %}


---

# 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://itemsadder.devs.beer/russian-work-in-progress/adding-content/vehicles.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.
