> For the complete documentation index, see [llms.txt](https://docs.0resmon.org/0resmon/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.0resmon.org/0resmon/frkn-resources/frkn-cargo-plane-heist/items.md).

# Items

## 📦 Item Configuration

You need to add the following items to your server for the script to function correctly.

#### Items Image

{% file src="/files/5wEIobX5L6Y7KouLx0Lf" %}

#### QBCore Items

Add these lines to your `qb-core/shared/items.lua`:

```lua
['cargo_tablet'] 	 = { name = 'cargo_tablet', 	 label = 'Heist Tablet', 	   weight = 200, 	type = 'item', 		image = 'cargo_tablet.png', 	unique = false, 	useable = true, 	shouldClose = true,	   description = 'A tablet used to access the dark web cargo network.' },
['drone_control'] 	 = { name = 'drone_control', 	 label = 'Surveillance Drone', weight = 1000, 	type = 'item', 		image = 'drone_control.png', 	unique = true, 		useable = true, 	shouldClose = true,	   description = 'Remote control for a high-tech heist drone.' },
['parachute_heist']  = { name = 'parachute_heist', 	 label = 'Heist Parachute',    weight = 1000, 	type = 'item', 		image = 'parachute.png', 		unique = false, 	useable = true, 	shouldClose = true,	   description = 'Essential for a safe exit from the plane.' },
```

#### OX Inventory Items

Add these lines to your `ox_inventory/data/items.lua`:

```lua
['cargo_tablet'] = {
    label = 'Heist Tablet',
    weight = 200,
    stack = false,
    close = true,
    description = 'A tablet used to access the dark web cargo network.'
},

['drone_control'] = {
    label = 'Surveillance Drone',
    weight = 1000,
    stack = false,
    close = true,
    description = 'Remote control for a high-tech heist drone.'
},

['parachute_heist'] = {
    label = 'Heist Parachute',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Essential for a safe exit from the plane.'
},
```


---

# 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://docs.0resmon.org/0resmon/frkn-resources/frkn-cargo-plane-heist/items.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.
