# Installation

### DEPENDENCIES

> **REQUIRED DEPENDENCIES**

| Type               | Resource                                              | Alternatives         | Download                                 |
| ------------------ | ----------------------------------------------------- | -------------------- | ---------------------------------------- |
| Framework          | [Compatibility](/dragonheartstudios/compatibility.md) | <ul><li>NA</li></ul> | <ul><li>Included in Bridge</li></ul>     |
| Bridge             | <ul><li>DHS-Bridge</li></ul>                          | <ul><li>NA</li></ul> | <ul><li>Included in Keymaster</li></ul>  |
| Progressbar System | <ul><li>Handled By The Bridge</li></ul>               | <ul><li>NA</li></ul> | <ul><li>Included in the Bridge</li></ul> |
| Notify System      | <ul><li>Handled By The Bridge</li></ul>               | <ul><li>NA</li></ul> | <ul><li>Included in the Bridge</li></ul> |

### RESOURCE INSTALLATION GUIDE

> **1) RESOURCE DOWNLOAD**

{% hint style="info" %}
Download your resource from [FiveM's Keymaster](https://keymaster.fivem.net/asset-grants).
{% endhint %}

***

> **2) ADD THE ITEMS**

{% tabs %}
{% tab title="QB Based Inventories" %}

```lua
--Peyote Plants
["bluepeyoteplant"] 				 = {["name"] = "bluepeyoteplant", 			    		["label"] = "Odd Plant", 			["weight"] = 0, 		["type"] = "item", 		["image"] = "bluepeyote.png", 				["unique"] = false, 	["useable"] = true, 	["shouldClose"] = true,	["description"] = "A Strange Looking Blue Flowered Plant"},
["pinkpeyoteplant"] 				 = {["name"] = "pinkpeyoteplant", 			    		["label"] = "Odd Plant", 			["weight"] = 0, 		["type"] = "item", 		["image"] = "pinkpeyote.png", 				["unique"] = false, 	["useable"] = true, 	["shouldClose"] = true,	["description"] = "A Strange Looking Pink Flowered Plant"},
["yellowpeyoteplant"] 				 = {["name"] = "yellowpeyoteplant", 			    		["label"] = "Odd Plant", 			["weight"] = 0, 		["type"] = "item", 		["image"] = "yellowpeyote.png", 				["unique"] = false, 	["useable"] = true, 	["shouldClose"] = true,	["description"] = "A Strange Looking Yellow Flowered Plant"},
["whitepeyoteplant"] 				 = {["name"] = "whitepeyoteplant", 			    		["label"] = "Odd Plant", 			["weight"] = 0, 		["type"] = "item", 		["image"] = "whitepeyote.png", 				["unique"] = false, 	["useable"] = true, 	["shouldClose"] = true,	["description"] = "A Strange Looking White Flowered Plant"},
```

{% endtab %}

{% tab title="Ox Inventory" %}

```lua
-- Peyote Plants
["bluepeyoteplant"] = {
    label = "Odd Plant",
    weight = 0,
    stack = true,
    close = true,
    description = "A Strange Looking Blue Flowered Plant",
    client = {
        image = "bluepeyote.png"
    }
},
["pinkpeyoteplant"] = {
    label = "Odd Plant",
    weight = 0,
    stack = true,
    close = true,
    description = "A Strange Looking Pink Flowered Plant",
    client = {
        image = "pinkpeyote.png"
    }
},
["yellowpeyoteplant"] = {
    label = "Odd Plant",
    weight = 0,
    stack = true,
    close = true,
    description = "A Strange Looking Yellow Flowered Plant",
    client = {
        image = "yellowpeyote.png"
    }
},
["whitepeyoteplant"] = {
    label = "Odd Plant",
    weight = 0,
    stack = true,
    close = true,
    description = "A Strange Looking White Flowered Plant",
    client = {
        image = "whitepeyote.png"
    }
}
```

{% endtab %}
{% endtabs %}

***

> **3) ADD THE IMAGES TO YOUR INVENTORY**

{% hint style="info" %}

* Open DHS-Peyote > images
* Copy files from the folder and add them into your inventory image folder
  {% endhint %}

***

***

> **4) INSTALL COMPLETE**

{% hint style="success" %}
The Install is now complete, you may move onto looking at the config.
{% 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://dragon-heart-studios.gitbook.io/dragonheartstudios/scripts/dhs-peyote/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.
