> For the complete documentation index, see [llms.txt](https://docs.otherplanet.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.otherplanet.dev/scripts/op-vehicle-theft/ox-inventory.md).

# OX Inventory

1. Navigate to your `inventory.cfg` file
2. Add Digiscanner as ignored weapon.&#x20;

   ```lua
   setr inventory:ignoreweapons ["WEAPON_DIGISCANNER"]
   ```

## Add New Item

```lua
["heist_scanner"] = {
        label = "Heist Scanner",
        weight = 100,
        stack = true,
        close = true,
        client = {
            event = "op-vehiclerobbery:detectorItem"
        }
},
["heist_hackingdevice"] = {
	label = "Hacking Device",
	weight = 100,
	stack = true,
	close = true,
},
```
