# Banktruck Robbery

## Preview

{% embed url="<https://www.youtube.com/watch?v=FQFrmJ88YI0>" %}
Banktruck robbery preview video
{% endembed %}

## Features

• Item needed to rob

• Police Alerts

• Notifications

• Guards Protecting

• Configurable loot

• Unique System

## Add new items

When adding new items you can use the math.random function for the amount a player can receive are give a specific amount of items the player will receive. For items that have a "worth" you can privide the min and max amount, here you can not use a specific amount unless making min and max the exact same amount.

```lua
Config.Rewards = {
    {item = 'markedbills', worth = {min = 1, max = 10}, amount = math.random(1, 3)},
    {item = 'goldbar', amount = 4}
}
```


---

# 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.thummie.com/docs/premium/banktruck-robbery.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.
