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

# Configuration

All settings are stored in `config.lua`.

***

## Default Config

```lua
Config = {
    Debug = false,
    ReapplyDelayMs = 500,

    IgnoredVehicles = {
        -- ["sultan"] = true,
    }
}
```

***

## Option Reference

| Option            | Type    | Description                                                 |
| ----------------- | ------- | ----------------------------------------------------------- |
| `Debug`           | boolean | Enables client-side console logs                            |
| `ReapplyDelayMs`  | number  | Prevents duplicate apply calls when entry events fire twice |
| `IgnoredVehicles` | table   | Vehicle names that should never be modified                 |

***

## Fixed Internal Value

zloma\_antibump is intentionally opinionated.

It always applies this value internally:

```lua
strAdvancedFlags = 201326592
```

That part is not configurable because the resource is meant to solve one specific problem only.

That problem is curb boosting, bump boosting, and similar speed gain caused by uneven road surfaces.

***

## Ignore List Example

```lua
IgnoredVehicles = {
    -- ["sultan"] = true,
}
```

***

## Manual Export

You can trigger the same behavior manually from another client script:

```lua
local success = exports['zloma_antibump']:ApplyToVehicle(vehicle)

if success then
    print('Anti-bump applied')
end
```

Legacy alias:

```lua
exports['zloma_antibump']:Apply(vehicle)
```


---

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

```
GET https://zloma-scripts.gitbook.io/zloma-scripts/zloma_antibump-free/configuration.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.
