# Config\_vehicle.lua settings

Here you can identify vehicles with the engine in the rear.

```lua
Config.backenginevehicles = {
    [`ninef`] = true,
    [`adder`] = true,
    [`vagner`] = true,
    [`t20`] = true,
    [`infernus`] = true,
    [`zentorno`] = true,
    [`reaper`] = true,
    [`comet2`] = true,
    [`comet3`] = true,
    [`jester`] = true,
    [`jester2`] = true,
    [`cheetah`] = true,
    [`cheetah2`] = true,
    [`prototipo`] = true,
    [`turismor`] = true,
    [`pfister811`] = true,
    [`ardent`] = true,
    [`nero`] = true,
    [`nero2`] = true,
    [`tempesta`] = true,
    [`vacca`] = true,
    [`bullet`] = true,
    [`osiris`] = true,
    [`entityxf`] = true,
    [`turismo2`] = true,
    [`fmj`] = true,
    [`re7b`] = true,
    [`tyrus`] = true,
    [`italigtb`] = true,
    [`penetrator`] = true,
    [`monroe`] = true,
    [`ninef2`] = true,
    [`stingergt`] = true,
    [`surfer`] = true,
    [`surfer2`] = true,
    [`gp1`] = true,
    [`autarch`] = true,
    [`tyrant`] = true
}

```

With this setting, you can set vehicle-specific trunk limits.

```lua
Config.specialvehicleset = {
    ['SULTANRS'] = {['slot'] = 25, ['weight'] = 70}
}
```

This setting sets the limit according to the vehicle class if a specific trunk limit is not set for the vehicle.

```lua

Config.trunkSize = {  ------ vehicle class(you can add speacial vehicle trunk size top)
    [0] = {
        maxweight = 600,
        slots = 30
    },
    [1] = {
        maxweight = 700,
        slots = 40
    },
    [2] = {
        maxweight = 800,
        slots = 50
    },
    [3] = {
        maxweight = 1000,
        slots = 35
    },
    [4] = {
        maxweight = 1200,
        slots = 30
    },
    [5] = {
        maxweight = 1400,
        slots = 25
    },
    [6] = {
        maxweight = 1500,
        slots = 25
    },
    [7] = {
        maxweight = 2500,
        slots = 25
    },
    [8] = {
        maxweight = 2700,
        slots = 15
    },
    [9] = { -- default weight if no class is set
        maxweight = 50,
        slots = 15
    },
    [12] = {
        maxweight = 7000,
        slots = 25
    },
    [13] = {
        maxweight = 0,
        slots = 0
    },
    [14] = {
        maxweight = 7000,
        slots = 50
    },
    [15] = {
        maxweight = 7000,
        slots = 50
    },
    [16] = {
        maxweight = 7000,
        slots = 50
    }
}
```


---

# Agent Instructions: 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:

```
GET https://docs.0resmon.org/0resmon/0resmon-1/bp-resources/bp-inventory/config-settings/config_vehicle.lua-settings.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
