# ESX Installation

## Dependencies

We sugggest you use ox\_target or qb-target you may get it at&#x20;

<https://github.com/overextended/ox\\_lib>

<https://github.com/overextended/ox\\_target>

## Step - 1a:

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

Add "ensure kvl-uwujob" to your server config

## Step - 1b:

Import the JobSqlForESX.sql into your database

## Step 2:&#x20;

We need to configure the store The followin code works for OX Inventory

## Create the shop

```lua
UwuCafe = {
	name = 'Uwu Cafe',
	inventory = {
		{ name = 'caramelsyrup', price = 5},
		{ name = 'vanillasyrup', price = 5},
		{ name = 'coffeebean', price = 5},
		{ name = 'milk', price = 5},
		{ name = 'ice', price = 5},
		{ name = 'sausage', price = 5},
		{ name = 'olive', price = 5},
		{ name = 'mushroom', price = 5},
		{ name = 'pepper', price = 5},
		{ name = 'corn', price = 5},
		{ name = 'carrot', price = 5},
		{ name = 'cucumber', price = 5},
		{ name = 'avocado', price = 5},
		{ name = 'tomato', price = 5},
		{ name = 'strawberry', price = 5},
		{ name = 'banana', price = 5},
		{ name = 'chocolatesauce', price = 5},
		{ name = 'spongecake', price = 5},
		{ name = 'rawmeat', price = 5},
		{ name = 'flour', price = 5}
	}, locations = {
		vec3(-590.375, -1058.52, 22.344)
	}, targets = {
	}
},

UwuDrunks = {
	name = 'Uwu Cafe - Drunks',
	inventory = {
		{ name = 'whiskey', price = 5},
		{ name = 'vodka', price = 5},
		{ name = 'tequila', price = 5},
		{ name = 'orangejuice', price = 5},
		{ name = 'coffeebean', price = 5},
		{ name = 'ice', price = 5}
	}, locations = {
		vec3(-585.299, -1055.92, 22.344)
	}, targets = {
	}
},
```

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

## Adding items to the items.lua

```lua
['caramelsyrup'] = {
	label = 'Caramel Syrup',
	weight = 1,
	stack = true
},
['vanillasyrup'] = {
	label = 'Vanilla Syrup',
	weight = 1,
	stack = true
},
['ice'] = {
	label = 'İce',
	weight = 1,
	stack = true
},
['coffeebean'] = {
	label = 'Coffee Bean',
	weight = 1,
	stack = true
},
['milk'] = {
	label = 'Milk',
	weight = 1,
	stack = true
},
['carrot'] = {
	label = 'Carrot',
	weight = 1,
	stack = true
},
['cucumber'] = {
	label = 'Cucumber',
	weight = 1,
	stack = true
},
['avocado'] = {
	label = 'Avocado',
	weight = 1,
	stack = true
},
['tomato'] = {
	label = 'Tomato',
	weight = 1,
	stack = true
},
['sausage'] = {
	label = 'Sausage',
	weight = 1,
	stack = true
},
['olive'] = {
	label = 'Olive',
	weight = 1,
	stack = true
},
['mushroom'] = {
	label = 'Mushroom',
	weight = 1,
	stack = true
},
['pepper'] = {
	label = 'Pepper',
	weight = 1,
	stack = true
},
['corn'] = {
	label = 'Corn',
	weight = 1,
	stack = true
},
['pizzadough'] = {
	label = 'Pizza Dough',
	weight = 1,
	stack = true
},
['strawberry'] = {
	label = 'Strawberry',
	weight = 1,
	stack = true
},
['banana'] = {
	label = 'Banana',
	weight = 1,
	stack = true
},
['chocolatesauce'] = {
	label = 'Chocolate Sauce',
	weight = 1,
	stack = true
},
['spongecake'] = {
	label = 'Sponge Cake',
	weight = 1,
	stack = true
},
['croissantdough'] = {
	label = 'Croissant Dough',
	weight = 1,
	stack = true
},
['flour'] = {
	label = 'Flour',
	weight = 1,
	stack = true
},
['dirtyplate'] = {
	label = 'Dirty Plate',
	weight = 1,
	stack = true
},
['burgerbread'] = {
	label = 'Burger Bread',
	weight = 1,
	stack = true
},
['burgermeat'] = {
	label = 'Burger Meat',
	weight = 1,
	stack = true
},
['rawmeat'] = {
	label = 'Raw Meat',
	weight = 1,
	stack = true
},

['coldcroissant'] = {
	label = 'Cold Croissant',
	weight = 1,
	stack = true
},
['coldpizza'] = {
	label = 'Cold Pizza',
	weight = 1,
	stack = true
},

['croissant'] = {
	label = 'Croissant',
	weight = 1,
	stack = true
},
['mixedcake'] = {
	label = 'Mixed Cake',
	weight = 1,
	stack = true
},
['pizza'] = {
	label = 'Pizza',
	weight = 1,
	stack = true
},
['salad'] = {
	label = 'Salad',
	weight = 1,
	stack = true
},
['caramelcoffee'] = {
	label = 'Caramel Coffee',
	weight = 1,
	stack = true
},
['vanillacoffee'] = {
	label = 'Vanilla Coffee',
	weight = 1,
	stack = true
},
['filtercoffee'] = {
	label = 'Filter Coffee',
	weight = 1,
	stack = true
},

['whiskey'] = {
	label = 'Whiskey',
	weight = 1,
	stack = true
},

['vodka'] = {
	label = 'Vodka',
	weight = 1,
	stack = true
},

['tequila'] = {
	label = 'Tequila',
	weight = 1,
	stack = true
},

['rainbow'] = {
	label = 'Rainbow',
	weight = 1,
	stack = true
},

['sunrise'] = {
	label = 'Tequila Sunrise',
	weight = 1,
	stack = true
},


['whiskeycoffee'] = {
	label = 'Whiskey Coffee',
	weight = 1,
	stack = true
},

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

### **Installation is complete, enjoy!**


---

# 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/uwu-job/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.
