> For the complete documentation index, see [llms.txt](https://kierandev.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kierandev.gitbook.io/documentation/tmc-resources/consumables-manager/installation.md).

# Installation

## Consumables Manager - Installation

### Requirements

* TMC Framework
* Core resource

### Installation Steps

#### 1. Download & Install Resource

1. Download the TMC Consumables Manager from your keymaster
2. Drag & drop it into your server resources
3. Configure however you would like

#### 2. Install Items (shared.gta5.lua)

```
    ["armour_light"] = {
        ["label"] = "Light Armour Vest",
        ["weight"] = 1500,
        ["type"] = "item",
        ["image"] = "armour_light.webp",
        ["unique"] = false,
        ["stackable"] = true,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "A lightweight kevlar vest. Offers basic protection without slowing you down."
    },
    ["armour_standard"] = {
        ["label"] = "Standard Armour",
        ["weight"] = 3000,
        ["type"] = "item",
        ["image"] = "armour_standard.webp",
        ["unique"] = false,
        ["stackable"] = true,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "A standard police-grade ballistic vest. Solid protection for most encounters."
    },
    ["armour_heavy"] = {
        ["label"] = "Heavy Plate Carrier",
        ["weight"] = 6000,
        ["type"] = "item",
        ["image"] = "armour_heavy.webp",
        ["unique"] = false,
        ["stackable"] = false,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "Thick ceramic plates. Heavy to carry and slow to put on, but stops big bullets."
    },
    ["ifak"] = {
        ["label"] = "Ifak",
        ["weight"] = 1000,
        ["type"] = "item",
        ["image"] = "ifak.webp",
        ["unique"] = false,
        ["stackable"] = false,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "Some protection won't hurt.. right? (One-time use)"
    },
    ["oxy"] = {
        ["label"] = "Oxycodone",
        ["weight"] = 100,
        ["type"] = "item",
        ["image"] = "oxy.webp",
        ["unique"] = false,
        ["stackable"] = true,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "Strong prescription painkillers. Heals slowly but allows you to stay mobile."
    },
    ["adrenaline"] = {
        ["label"] = "Adrenaline Shot",
        ["weight"] = 300,
        ["type"] = "item",
        ["image"] = "adrenaline.webp",
        ["unique"] = false,
        ["stackable"] = true,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "An emergency auto-injector. Provides a massive health boost but doesn't last long."
    },
```

#### 3. Install Images (Inventory/html/images)

```
kieran-consumablesmanager/images/armour_heavy.webp
kieran-consumablesmanager/images/armour_light.webp
kieran-consumablesmanager/images/armour_standard.webp
kieran-consumablesmanager/images/ifak.webp
kieran-consumablesmanager/images/Oxy.webp
kieran-consumablesmanager/images/adrenaline.webp
```


---

# 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://kierandev.gitbook.io/documentation/tmc-resources/consumables-manager/installation.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.
