> 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-iclothing/how-to-add-more-items.md).

# How to Add More Items

1. Go to \`bunny\_iclothing/preset\` folder and open desired folder such as chain, bag etc.\
   Available files are Bags, Chains, Ears, Glasses, Hats, Mask, Pant, Shoes, Jacktes, Vest, Watches
2. Now add code after the \`config.chain = {\` like shows in the below example\
   `chain_dogtag` is the item name which we have created in the [icebox docs](https://bunny-store.gitbook.io/bunny-store-docs/bunny-icebox/how-to-add-more-items). Make sure to use exact spellings to avoid issues.<br>

   ```
       chain_dogtag = {
               male = {
                   main = {
                       chain_1 = 141, chain_2 = 0, -- item slot name and id. 
                   },
               },
               female = {
                   main = {
                       chain_1 = 141, chain_2 = 0, -- item slot name and id. 
                   },
               },
           },
   ```

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

3. Now adjust the numbers you see in the clothing store for chain in the case we replace chain 141 from clothing store and save the file.
4. If you want to make the usable only for male or female use the code below.<br>

   ```
   --For Female
           chain_dogtag = {
               female = {
                   main = {
                       chain_1 = 141, chain_2 = 0, -- item slot name and id. 
                   },
               },
           },
   ```

   <br>

   ```
   -- For Male    
       chain_dogtag = {
               male = {
                   main = {
                       chain_1 = 141, chain_2 = 0, -- item slot name and id. 
                   },
               },
           },
   ```
5. Now save the file and restart server.


---

# 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-iclothing/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.
