# Items

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

FRKN-Tuning comes with **custom item images** included in the script! Whether you're using **QB-Inventory** or **OX Inventory**, setup is simple and straightforward.

***

### **📦 QB-Inventory Item Config**

Add the following items to your **QB-Inventory**, allowing mechanics, police, and players to interact with the tuning system seamlessly.

```lua
usb_tuning = {
    name = "usb_tuning",
    label = "Tuning USB",
    weight = 50,
    type = "item",
    image = "usb_tuning.png",
    unique = true,
    useable = true,
    description = "Contains vehicle handling data linked to an ID."
},

tuning_tablet = {
    name = "tuning_tablet",
    label = "Tuning Tablet",
    weight = 50,
    type = "item",
    image = "tuning_tablet.png",
    unique = true,
    useable = true,
    description = "Your gateway to advanced vehicle tuning."
},

police_tablet = {
    name = "police_tablet",
    label = "Police Tablet",
    weight = 50,
    type = "item",
    image = "police_tablet.png",
    unique = true,
    useable = true,
    description = "Allows police officers to inspect and detect vehicle modifications."
},

suspension_controller = {
    name = "suspension_controller",
    label = "Suspension Controller",
    weight = 50,
    type = "item",
    image = "suspension_controller.png",
    unique = true,
    useable = true,
    description = "Adjusts suspension settings for off-road and performance tuning."
},

```

***

### **📦 OX-Inventory Item Config**

For those using **OX Inventory**, simply add the following item definitions.

```lua
['usb_tuning'] = {
    label = "Tuning USB",
    weight = 50,
    stack = false,
    close = true,
    description = "Contains vehicle handling data linked to an ID.",
    client = {
        image = "usb_tuning.png"
    }
},

['tuning_tablet'] = {
    label = "Tuning Tablet",
    weight = 50,
    stack = false,
    close = true,
    description = "Your gateway to advanced vehicle tuning.",
    client = {
        image = "tuning_tablet.png"
    }
},

['police_tablet'] = {
    label = "Police Tablet",
    weight = 50,
    stack = false,
    close = true,
    description = "Allows police officers to inspect and detect vehicle modifications.",
    client = {
        image = "police_tablet.png"
    }
},

['suspension_controller'] = {
    label = "Suspension Controller",
    weight = 50,
    stack = false,
    close = true,
    description = "Adjusts suspension settings for off-road and performance tuning.",
    client = {
        image = "suspension_controller.png"
    }
},
```

***

#### **💡 Why Use These Items?**

✅ **Tuning Tablet:** Unlocks handling and performance adjustments.\
✅ **USB Tuning:** Save and transfer tuning setups between vehicles.\
✅ **Police Tablet:** Officers can inspect vehicle modifications.\
✅ **Suspension Controller:** Quickly adapt suspension for off-road or race conditions.

🚀 **FRKN-Tuning makes vehicle customization effortless! Set up your items and start tuning!** 🔧🔥


---

# 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-tuning-system/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.
