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