> For the complete documentation index, see [llms.txt](https://gtadocs.gta-explore.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gtadocs.gta-explore.com/bank-robbery/configuration.md).

# Configuration

You can edit the following variables in the file: config.lua

## LANGUAGE

The active locale name.

```lua
LANGUAGE = "en"
```

## MONEY\_PER\_STACK

The amount of money earned when grabbing a full stack.

```lua
MONEY_PER_STACK = 150
```

## MONEY\_TYPE

The type of money earned when grabbing money on a trolley.

```lua
MONEY_TYPE = "money"
```

## BANK\_TIMER

The time to wait between two bank robberies.

```lua
BANK_TIMER = 60 * 60000     -- 60 minutes
```

## POLICE\_REQUIRED

The amount of cops required to be online.

```lua
POLICE_REQUIRED = 0
```

## POL\_ALERT\_TIME

The police alert duration (How long the blip stays on the map).

```lua
POL_ALERT_TIME = 30 * 1000  -- 30 seconds
```

## POL\_ALERT\_SPRITE

The blip sprite for the police alert. (\[See the list of sprites]\(<https://docs.fivem.net/docs/game-references/blips/#blips>))

```lua
POL_ALERT_SPRITE = 108      -- radar_financier_strand...
```

## POL\_ALERT\_COLOR

The blip color for the police alert. (\[See the list of colors]\(<https://docs.fivem.net/docs/game-references/blips/#blip-colors>))

```lua
POL_ALERT_COLOR = 1         -- Red
```

## POL\_ALERT\_WAVE

Toggle the wave effect behind the blip for the police alert.

```lua
POL_ALERT_WAVE = true       -- Enables the blip wave.
```

## HACK\_ITEM

The name of the item required to hack control panels.\
*This can be removed or commented to disable the requirement.*

```lua
HACK_ITEM = "laptop"        -- Required item to hack, Remove to allow anyone to hack.
```

## BANKS

The bank configurations.\
*This should NOT be changed, unless you know what you're doing.*
