# Inventory Items

### ADD THIS TO YOUR OX\_Inventory Items (Copy past Change - Description to your if you want )

```lua
["nos"] = {
    label = "NOS Bottle",
    weight = 2000,
    stack = false,
    close = true,
    consume = 1,
    description = 'Thats what im talking about!',
    client = {
        image = 'nitrous_bottle.png',
        export = "RDH_Nitro.nos"
    }
},

["nosb"] = {
    label = "Bike NOS Bottle",
    weight = 1000,
    stack = false,
    close = true,
    consume = 1,
    description = 'Too small to be on a car no ?',
    client = {
        image = 'bike_nitrous_bottle.png',
        export = "RDH_Nitro.nos"
    }
},

    ['nitrous_remover'] = {
        label = 'Nitrous Remover',
        weight = 2000,
        stack = false,
        close = true,
        consume = 0,
        description = 'Toolkit to remove NOS bottles from a vehicle',
        client = {
            image = 'nitrous_remover.png',
            export = 'RDH_Nitro.nitrous_remover',
        },
    },

    ['purge_kit_remover'] = {
        label = 'Purge Kit Remover',
        weight = 2000,
        stack = false,
        close = true,
        consume = 0,
        description = 'Tool to remove Purge Kits from a vehicle',
        client = {
            image = 'purge_kit_remover.png',
            export = 'RDH_Nitro.purge_kit_remover',
        },
    },

    ['purge_kit'] = {
        label = 'Purge Kit',
        weight = 3000,
        stack = false,
        close = true,
        consume = 1,
        description = 'This for sure will make some steam',
        client = {
            image = 'purge_kit.png',
            export = 'RDH_Nitro.purge_kit',
        },
    },

    ['nitrous_tint'] = {
        label = 'Nitrous Tint',
        weight = 500,
        stack = false,
        close = true,
        consume = 1,
        description = 'No way i can tint my flames',
        client = {
            image = 'nitrous_tint.png',
            export = 'RDH_Nitro.nitrous_tint',
        },
    },

    ['purge_tint'] = {
        label = 'Purge Tint',
        weight = 500,
        stack = false,
        close = true,
        consume = 1,
        description = 'I can Tint my steam? Nooo way!',
        client = {
            image = 'purge_tint.png',
            export = 'RDH_Nitro.purge_tint',
        },
    },
    ['nos_compressor'] = {
        label = 'NOS Compressor',
        weight = 15000,
        stack = false,
        close = true,
        consume = 1,
        description = 'Well looks nice in my mechanic shop',
        client = {
            image = 'prop_compressor_02_icon.png',
            export = 'RDH_Nitro.nos_compressor',
        },
    },

    ['nos_public_compressor'] = {
        label = 'NOS Public Compressor',
        weight = 15000,
        stack = false,
        close = true,
        consume = 1,
        description = 'A underground NOS refill station (Admin only)',
        client = {
            image = 'prop_compressor_03_icon.png',
            export = 'RDH_Nitro.nos_public_compressor',
        },
    },
```

### Items Informations

```lua
|   Item Name             | Description                                                 | Type |

| `nos`                   | NOS Bottle — installs a nitrous bottle on the vehicle       | Usable |
| `nitrous_remover`       | Nitrous Remover — removes bottles from a vehicle            | Usable |
| `purge_kit`             | Purge Kit — installs a purge kit (2 nozzles per kit)        | Usable |
| `purge_kit_remover`     | Purge Kit Remover — removes purge kits from a vehicle       | Usable |
| `nitrous_tint`          | Nitrous Tint — changes the exhaust flame color              | Usable |
| `purge_tint`            | Purge Tint — changes the purge steam color                  | Usable |
| `nos_compressor`        | NOS Compressor — places a mechanic refill station           | Usable |
| `nos_public_compressor` | Public NOS Compressor — places a public refill station (admin only) | Usable |

Each item must have `export = 'RDH_Nitro'` and the matching export name in its ox_inventory item definition. 
```

{% hint style="info" %}
If you have multiple files, GitBook makes it easy to import full repositories too — allowing you to keep your GitBook content in sync.
{% endhint %}


---

# 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://rdhub.gitbook.io/rdhub-documentation/documentation/rdh-nitro/markdown.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.
