# Items

{% file src="<https://3505378470-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FmOhVROw9E3kpmAG3JYVe%2Fuploads%2FpMMmZee54w3QViaNLvTc%2Fitems_image.rar?alt=media&token=c33b545f-4078-49b4-9b29-3ef99af464c9>" %}

#### **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.
