# ESX Installation

```lua
Dependency
-- MLO Map
https://www.gta5-mods.com/maps/mlo-burgershot-2023-add-on-sp-fivem
```

Installation instructions

Follow instructions in "Readme" folder for your framework failing to do so will cause for things not to work as intended.

### Step - 1: <a href="#step-1" id="step-1"></a>

Copy kvl-burgershot to your resources directory&#x20;

Add "ensure kvl-burgershot" to your server config

### Step - 2:

### Create the shop <a href="#create-the-shop" id="create-the-shop"></a>

```
BurgerShop = {
    name = 'Burgershot',
    inventory = {
        { name = 'burgerbread', price = 5},
        { name = 'rawmeat', price = 5},
        { name = 'rawchickenmeat', price = 5},
        { name = 'frozenrings', price = 5},
        { name = 'frozennugget', price = 5},
        { name = 'potatoes', price = 5},
        { name = 'frozencrispycheese', price = 5},
        { name = 'frozentenders', price = 5},
        { name = 'tomato', price = 5},
        { name = 'lettuce', price = 5},
        { name = 'cheddar', price = 5},
        { name = 'pickle', price = 5},
        { name = 'onion', price = 5},
    }, locations = {
        vec3(-1196.66, -901.58, 13.89)
    }, targets = {
    }
},
```

### Step - 3: <a href="#step-3" id="step-3"></a>

Adding images for your inventory Copy the files from Images to your ox\_inventory/web/images folder.

Adding items to the items.lua

```
['frozenrings'] = {
['label'] = 'Frozen Orion Rings',
['weight'] = 1,
['stack'] = true
},

['frozennugget'] = {
['label'] = 'Frozen Nugget',
['weight'] = 1,
['stack'] = true
},

['potatoes'] = {
['label'] = 'Potatoes',
['weight'] = 1,
['stack'] = true
},

['frozencrispycheese'] = {
['label'] = 'Frozen Crispy Cheese',
['weight'] = 1,
['stack'] = true
},

['frozentenders'] = {
['label'] = 'Frozen Tenders',
['weight'] = 1,
['stack'] = true
},

['onionrings'] = {
['label'] = 'Onion Rings',
['weight'] = 1,
['stack'] = true
},

['nugget'] = {
['label'] = 'Nugget',
['weight'] = 1,
['stack'] = true
},

['frenchfries'] = {
['label'] = 'French Fries',
['weight'] = 1,
['stack'] = true
},

['crispycheese'] = {
['label'] = 'Crispy Cheese',
['weight'] = 1,
['stack'] = true
},

['tenders'] = {
['label'] = 'Tenders',
['weight'] = 1,
['stack'] = true
},

['churros'] = {
['label'] = 'Churros',
['weight'] = 1,
['stack'] = true
},

['souffle'] = {
['label'] = 'Souffle',
['weight'] = 1,
['stack'] = true
},

['chocolatecookie'] = {
['label'] = 'Chocolate Cookie',
['weight'] = 1,
['stack'] = true
},

['applepie'] = {
['label'] = 'Apple Pie',
['weight'] = 1,
['stack'] = true
},

['cherrypie'] = {
['label'] = 'Sour Cherry Pie',
['weight'] = 1,
['stack'] = true
},

['tomato'] = {
['label'] = 'Tomato',
['weight'] = 1,
['stack'] = true
},

['lettuce'] = {
['label'] = 'Lettuce',
['weight'] = 1,
['stack'] = true
},

['cheddar'] = {
['label'] = 'Cheddar',
['weight'] = 1,
['stack'] = true
},

['pickle'] = {
['label'] = 'Pickle',
['weight'] = 1,
['stack'] = true
},

['onion'] = {
['label'] = 'Onion',
['weight'] = 1,
['stack'] = true
},

['bigking'] = {
['label'] = 'Big King',
['weight'] = 1,
['stack'] = true
},

['chickenroyale'] = {
['label'] = 'Chicken Royale',
['weight'] = 1,
['stack'] = true
},

['kingchicken'] = {
['label'] = 'King Chicken',
['weight'] = 1,
['stack'] = true
},

['rodeowhopper'] = {
['label'] = 'Rodeo Whopper',
['weight'] = 1,
['stack'] = true
},

['smokehouse'] = {
['label'] = 'Smoke House',
['weight'] = 1,
['stack'] = true
},

['steakhouse'] = {
['label'] = 'Steak House',
['weight'] = 1,
['stack'] = true
},

['whopper'] = {
['label'] = 'Whopper',
['weight'] = 1,
['stack'] = true
},

['kingbeef'] = {
['label'] = 'King Beef',
['weight'] = 1,
['stack'] = true
},

['burgermeat'] = {
['label'] = 'Cow Meat',
['weight'] = 1,
['stack'] = true
},

['chickenmeat'] = {
['label'] = 'Chicken Meat',
['weight'] = 1,
['stack'] = true
},

['burgerbread'] = {
['label'] = 'Burger Bread',
['weight'] = 1,
['stack'] = true
},

['rawmeat'] = {
['label'] = 'Raw Meat',
['weight'] = 1,
['stack'] = true
},

['rawchickenmeat'] = {
['label'] = 'Raw Chicken Meat',
['weight'] = 1,
['stack'] = true
},

['emptyglass'] = {
['label'] = 'Empty Glass',
['weight'] = 1,
['stack'] = true
},

['cocacola'] = {
['label'] = 'Coca Cola',
['weight'] = 1,
['stack'] = true
},

['fanta'] = {
['label'] = 'Fanta',
['weight'] = 1,
['stack'] = true
},

['sprite'] = {
['label'] = 'Sprite',
['weight'] = 1,
['stack'] = true
},

['orangejuice'] = {
['label'] = 'Orange Juice',
['weight'] = 1,
['stack'] = true
},

['filtercoffee'] = {
['label'] = 'Filter Coffee',
['weight'] = 1,
['stack'] = true
},

['lemonade'] = {
['label'] = 'Lemonade',
['weight'] = 1,
['stack'] = true
},
```

#### **Installation is complete, enjoy!** <a href="#installation-is-complete-enjoy" id="installation-is-complete-enjoy"></a>


---

# 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://kavl.gitbook.io/kvl-store/scripts/burgershot/esx-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.
