> For the complete documentation index, see [llms.txt](https://bunny-store.gitbook.io/bunny-store-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bunny-store.gitbook.io/bunny-store-docs/bunny-icebox/how-to-add-more-items.md).

# How to Add More Items

## **Adding Items to Your Inventory / Items Table**

Create item in your inventory or in the items table.\
If you are not using any of the methods below, **make a ticket on my Discord for support:**\
👉 [**https://discord.gg/dSz7ZgYGwM**](https://discord.gg/dSz7ZgYGwM)

### **phpMyAdmin**

If you are adding items to the database using **phpMyAdmin**, follow the steps below:

1. Log in to your database and select the **items** table.

<figure><img src="/files/xR9DveKltcuAUlL7Fx5Q" alt=""><figcaption></figcaption></figure>

2. Click on the **Insert** tab at the top.
3. Add item data exactly as shown in the screenshot.

<figure><img src="/files/BgnIUIBe6MUyhN79Uh2J" alt=""><figcaption></figcaption></figure>

> **Note:**\
> Keep the item name **in small letters** and **without spaces** to avoid issues.\
> You *can* use spaces in the item **label**.

### **HeidiSQL**

If you are adding items to the database using **HeidiSQL**, follow the steps below:

1. Log in to your database and select the **items** table.

<figure><img src="/files/9CCWUxTjHpwdnis3pvTJ" alt=""><figcaption></figcaption></figure>

2. Click on the **Data** tab, then right-click in the empty area and choose **Insert Row** / **New Row**.
3. Add the item `name` and `label` as shown in the screenshot and press **Enter** to save.

<figure><img src="/files/SM5I9Z5GRd23KbYB4wkQ" alt=""><figcaption></figcaption></figure>

> **Note:**\
> Keep the item name **in small letters** and **without spaces** to avoid issues.\
> Labels *may* contain spaces.

### **OX Inventory**

If you are using **ox\_inventory**, follow these steps:

1. Navigate to:

   ```
   ox_inventory/data/items.lua
   ```
2. Add the new item code as shown in the screenshot and save the file.<br>

   ```
   ["chain_dogtag"] = {
   		label = "Chain Dogtag",
   		weight = 1,
   		stack = true,
   		close = true,
   	},
   ```

<figure><img src="/files/ToGlfX0wSaxH9bp8UOFw" alt=""><figcaption></figcaption></figure>

> **Note:**\
> Item names must be **lowercase** and contain **no spaces**.\
> Labels may contain spaces.

### **Add Item to Bunny Icebox Config**

After creating the item:\
1\.  Add the **item name** to `config.lua` of **bunny\_icebox** so it appears in the shop when you restart the server or script.

<figure><img src="/files/I0ukpz25OzYe44lbfS9P" alt=""><figcaption></figcaption></figure>

2\. Add the item image to:

```
bunny_icebox/nui/images
```

### **Make the Clothing Item Usable (iclothing)**

You must also add the item inside your **iclothing script** to make it usable.

Follow this guide <https://bunny-store.gitbook.io/bunny-store-docs/bunny-iclothing/how-to-add-more-items>


---

# 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:

```
GET https://bunny-store.gitbook.io/bunny-store-docs/bunny-icebox/how-to-add-more-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.
