> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectx.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# Configuration

> Full reference for all configuration options in the Default Bobcat Heist resource

## config/config.lua

The Default Bobcat Heist uses the same configuration structure as the [K4MB1 Bobcat Heist](/resources/bobcat-heist-k4mb1/configuration). All options below apply — only map coordinates and door definitions differ for the free `BOBCAT_MLO`.

### Main Settings

<ParamField path="debug" type="boolean" default="false">
  Shows polyzones created inside the game.
</ParamField>

<ParamField path="TestingMode" type="boolean" default="false">
  Disables all minigames for flow testing.
</ParamField>

<ParamField path="ResetHeist" type="number" default="180">
  Minutes before the heist resets after a completed robbery.
</ParamField>

<ParamField path="DisableLoudApproach" type="boolean" default="false">
  Disables the loud approach path entirely.
</ParamField>

<ParamField path="DisableSilentApproach" type="boolean" default="false">
  Disables the silent approach path entirely.
</ParamField>

<ParamField path="DisableExplosions" type="boolean" default="true">
  Disables client-side explosions during C4 steps.
</ParamField>

<ParamField path="RequireBag" type="boolean" default="true">
  Requires a `bag` item to loot trolleys.
</ParamField>

<ParamField path="MinimumPolice" type="number" default="0">
  Minimum police required online. Set to `0` to disable.
</ParamField>

***

### Strike System

<ParamField path="TotalTrollys" type="number" default="3">
  Maximum trolleys that can spawn.
</ParamField>

<ParamField path="Strikes" type="number" default="3">
  Strike limit before rewards are reduced (silent approach).
</ParamField>

<ParamField path="TotalCrates" type="number" default="2">
  Maximum weapon crates that can spawn.
</ParamField>

***

### Bonus Items

The default variant ships with `fleecacard` in the bonus items table instead of `x_device`:

```lua theme={null}
Bonus = {
    Status = false,
    Items = {
        {Name = "fleecacard", Chance = 30, Amount = {min = 1, max = 1}},
        {Name = "x_phone", Chance = 50, Amount = {min = 1, max = 1}},
        {Name = "x_stethoscope", Chance = 20, Amount = {min = 1, max = 1}},
    },
}
```

***

### Full Reference

For dispatch, computer password, rewards, security guards, sounds, evidence/stress, and logging options, see the [K4MB1 Bobcat Configuration](/resources/bobcat-heist-k4mb1/configuration) page.
