# Items

{% file src="/files/RBVhjP6baZNzASM4HMEt" %}

#### **Ox Inventory** (`ox_inventory/data/items.lua`)

```lua
['gps_hacking_device'] = {
    label = 'GPS Hacking Device',
    weight = 1000,
    client = { image = 'gps_hacking_device.png' },
},

['boosting_tablet'] = {
    label = 'Boosting Tablet',
    weight = 1000,
    client = { image = 'boosting_tablet.png' },
},
```

* **gps\_hacking\_device**: Used for cracking vehicle GPS trackers.
* **boosting\_tablet**: Required to access and manage boosting contracts.

***

#### **QB-Core** (`qb-core/shared/items.lua`)

```lua
gps_hacking_device = {
    name = 'gps_hacking_device',
    label = 'GPS Hacking Device',
    weight = 1000,
    type = 'item',
    image = 'gps_hacking_device.png',
    unique = true,
    useable = true,
    shouldClose = true,
    description = 'A device for cracking the GPS of cars',
},

boosting_tablet = {
    name = 'boosting_tablet',
    label = 'Boosting Tablet',
    weight = 1000,
    type = 'item',
    image = 'boosting_tablet.png',
    unique = true,
    useable = true,
    shouldClose = true,
    description = 'A tablet used for boosting operations',
},
```

* **gps\_hacking\_device**: A unique, useable tool required to disable GPS tracking devices.
* **boosting\_tablet**: A unique tablet that unlocks access to boosting jobs and contract management.


---

# 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-boosting/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.
