> 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/0resmon-1/frkn-resources/frkn-camera-system/items.md).

# Items

### 📦 Items

**Item Configuration | Ready-to-Use for QB & OX Inventory 🛠️**

FRKN-Camera comes with fully customizable items, including the **Signal Cutter**, used to disable or break surveillance cameras. You can easily add it to either **QB-Inventory** or **OX-Inventory** using the configurations below.

***

#### 📁 QB-Inventory Item Config

```lua
signalcutter = {
    name = "signalcutter",
    label = "Signal Cutter",
    weight = 100,
    type = "item",
    image = "signalcutter.png",
    unique = true,
    useable = true,
    description = "Used to disrupt or disable camera systems."
},
camerarepairkit = {
    name = "camerarepairkit",
    label = "Camera Repair Kit",
    weight = 150,
    type = "item",
    image = "camerarepairkit.png",
    unique = true,
    useable = true,
    description = "Used to repair broken or disabled camera systems."
}
```

✅ Add this to your `qb-core/shared/items.lua` file.\
✅ Ensure the image file `signalcutter.png` exists in your inventory images folder.

***

#### 📁 OX-Inventory Item Config

For **OX Inventory**, use the following format inside your `data/items.lua`:

```lua
['signalcutter'] = {
    label = 'Signal Cutter',
    weight = 100,
    stack = false,
    close = true,
    description = 'Used to disrupt or disable camera systems.',
    client = {
        image = 'signalcutter.png'
    }
},
['camerarepairkit'] = {
    label = 'Camera Repair Kit',
    weight = 150,
    stack = false,
    close = true,
    description = 'Used to repair broken or disabled camera systems.',
    client = {
        image = 'camerarepairkit.png'
    }
}
```

✅ Place the `signalcutter.png` image inside your OX images directory (`ox_inventory/web/images/items`)\
✅ Set `stack = false` to make it a unique-use tool (recommended)

***

🎯 **Tips:**

* You can use metadata with `signalcutter` if you want to track serials or usage count
* Rename item in the config if you’re using a different internal name (e.g., `"cutter_tool"`)


---

# 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/0resmon-1/frkn-resources/frkn-camera-system/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.
