> For the complete documentation index, see [llms.txt](https://quannsstudios.gitbook.io/quannsstudio-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://quannsstudios.gitbook.io/quannsstudio-docs/propad-system-esx/configuration.md).

# Configuration

All configuration lives in `config.lua`.

***

lua

```lua
Config.ProPadItem   = 'qs_propad'       -- Item used to open the tablet
Config.FobItem      = 'program_fob'     -- Item required for hacking
Config.SuccessMode  = 'both'            -- 'garage', 'keys', or 'both'
Config.HackCooldown = 300               -- Seconds between hacks
Config.VehicleDetectDistance = 5.0      -- Max distance to detect nearby vehicle

Config.BlacklistedVehicles = {
    'police', 'police2', 'police3', 'police4',
    'policeb', 'polmav', 'ambulance', 'firetruk', 'riot',
}

Config.WhitelistedVehicles = {}
```

**Options**

| Option                  | Description                                                     |
| ----------------------- | --------------------------------------------------------------- |
| `ProPadItem`            | The item used to open the tablet                                |
| `FobItem`               | Item required to access the hacking menu. Consumed on failure.  |
| `SuccessMode`           | What happens on a successful hack — `garage`, `keys`, or `both` |
| `HackCooldown`          | Cooldown in seconds between hacks                               |
| `VehicleDetectDistance` | Max distance in metres to detect a nearby vehicle               |
| `BlacklistedVehicles`   | Vehicles that cannot be targeted                                |
| `WhitelistedVehicles`   | Leave empty to allow all non-blacklisted vehicles               |

***

**Chop Shops**

Two chop shop locations are built in by default. Players must be within 20 metres of a chop shop to sell.

| Name               | Location     |
| ------------------ | ------------ |
| Southside Chop Co. | In City      |
| Desert Iron Works  | Sandy Shores |

***

**Signal Zones**

Signal strength is determined by your position on the map and affects hacking difficulty, scanner duration, diagnostics, and VPN ping.

| Zone                            | Signal  |
| ------------------------------- | ------- |
| Downtown / Vinewood / South LS  | 85–100% |
| Mirror Park / Airport / East LS | 55–75%  |
| Outskirts / Wilderness          | 30–60%  |
| Sandy Shores                    | 20–45%  |
| Paleto Bay                      | 10–30%  |


---

# 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://quannsstudios.gitbook.io/quannsstudio-docs/propad-system-esx/configuration.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.
