# ESX

You will receive the script in [`keymaster.fivem.net`](https://keymaster.fivem.net/asset-grants) profile, after this click in blue "download" button.

After download, put the script in your server files.

{% hint style="warning" %}
Remeber:

You need to be logged with the same cfx.re account you used to buy in my tebex store.
{% endhint %}

1. Install all [dependencies](#dependencies-part), and follow their respective installation instructions.

## Dependencies Part

* [**es\_extended**](https://github.com/ESX-Official/es_extended)
* [**oxmysql**](https://github.com/overextended/oxmysql)
* Provided skillbar script

Download all the scripts by clicking on their respective names, put them in the server files and ensure in server.cfg

## Items

{% tabs %}
{% tab title="Usual Inventories" %}
If you have an inventory other than the **default ESX**, open your inventory and **add all the images** we have provided in **downloaded** files.

Items will be **automatically** created with **SQL** file provided.
{% endtab %}

{% tab title="Ox Inventory" %}
Open your **inventory** and add **all images** we provide on **downloaded** files.

\
Open **ox\_inventory / init.lua**:\
Find: \
`ignoreweapons[WEAPON_HOSE] = true`

or

``ignoreweapons[`WEAPON_HOSE`] = true``

\
Add under it: \
`ignoreweapons[WEAPON_BATTLEAXE] = true`\
`ignoreweapons[WEAPON_HATCHET] = true`

or

``ignoreweapons[`WEAPON_BATTLEAXE`] = true``\
``ignoreweapons[`WEAPON_HATCHET`] = true``

\
Open **ox\_inventory / data / items.lua**, add this line&#x73;**:**

```lua
	["bactery_waterbottle"] = {
		label = "Bacteria-infused Water Bottle",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["bottlewater_package"] = {
		label = "Water Bottle Pack",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["dirty_waterbottle"] = {
		label = "Dirty Water Bottle",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["good_waterbottle"] = {
		label = "Pure Water Bottle",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["pollution_waterbottle"] = {
		label = "Contaminated Water Bottle",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["salt_waterbottle"] = {
		label = "Saltwater Bottle",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["toxic_waterbottle"] = {
		label = "Toxic Water Bottle",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["waterbottle"] = {
		label = "Water Bottle",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["lingot_sapphire"] = {
		label = "Sapphire Ingot",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["lingot_diamond"] = {
		label = "Diamond Ingot",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["lingot_ruby"] = {
		label = "Ruby Ingot",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["lingot_emerald"] = {
		label = "Emerald Ingot",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["raw_sapphire"] = {
		label = "Raw Sapphire",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["raw_diamond"] = {
		label = "Raw Diamond",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["raw_ruby"] = {
		label = "Raw Ruby",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["raw_emerald"] = {
		label = "Raw Emerald",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["raw_carbon"] = {
		label = "Raw Carbon",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["raw_gold"] = {
		label = "Raw Gold",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["raw_iron"] = {
		label = "Raw Iron",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["raw_silver"] = {
		label = "Raw Silver",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["lingot_carbon"] = {
		label = "Processed Carbon Ingot",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["lingot_gold"] = {
		label = "Gold Ingot",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["lingot_iron"] = {
		label = "Iron Ingot",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["lingot_silver"] = {
		label = "Silver Ingot",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["oak_processed"] = {
		label = "Processed Oak Wood",
		weight = 10,
		stack = true,
		close = true,
	},
	
	["oak_wood"] = {
		label = "Oak Wood",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["pine_processed"] = {
		label = "Processed Pine Wood",
		weight = 10,
		stack = true,
		close = true,
	},
	
	["pine_wood"] = {
		label = "Pine Wood",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["orange_fruit"] = {
		label = "Orange",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["orange_package"] = {
		label = "Box of Oranges",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["orange_seed"] = {
		label = "Orange Seed",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["blueberry_fruit"] = {
		label = "Blueberry",
		weight = 50,
		stack = true,
		close = true,
	},
	
	["blueberry_package"] = {
		label = "Box of Blueberries",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["blueberry_seed"] = {
		label = "Blueberry Seed",
		weight = 10,
		stack = true,
		close = true,
	},
	
	["apple_fruit"] = {
		label = "Apple",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["apple_package"] = {
		label = "Box of Apples",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["apple_seed"] = {
		label = "Apple Seed",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["tomato_fruit"] = {
		label = "Tomato",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["tomato_package"] = {
		label = "Box of Tomatoes",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["tomato_seed"] = {
		label = "Tomato Seed",
		weight = -1,
		stack = true,
		close = true,
	},
	
	["water_25"] = {
		label = "25-Liter Water Bottle",
		weight = 5,
		stack = true,
		close = true,
	},
	
	["water_50"] = {
		label = "50-Liter Water Bottle",
		weight = 5,
		stack = true,
		close = true,
	},
	
	["fertilizer_25"] = {
		label = "25-Use Fertilizer",
		weight = 5,
		stack = true,
		close = true,
	},
	
	["fertilizer_50"] = {
		label = "50-Use Fertilizer",
		weight = 5,
		stack = true,
		close = true,
	},
	
	["stingray"] = {
		label = "Stingray",
		weight = 2500,
		stack = true,
		close = true,
	},
	
	["flounder"] = {
		label = "Flounder",
		weight = 2500,
		stack = true,
		close = true,
	},
	
	["codfish"] = {
		label = "Codfish",
		weight = 2500,
		stack = true,
		close = true,
	},
	
	["mackerel"] = {
		label = "Mackerel",
		weight = 2500,
		stack = true,
		close = true,
	},
	
	["bass"] = {
		label = "Bass",
		weight = 1250,
		stack = true,
		close = true,
	},
	
	["killerwhale"] = {
		label = "Killer Whale",
		weight = 15000,
		stack = true,
		close = true,
	},
	
	["dolphin"] = {
		label = "Dolphin",
		weight = 5000,
		stack = true,
		close = true,
	},
	
	["sharkhammer"] = {
		label = "Hammerhead Shark",
		weight = 20000,
		stack = true,
		close = true,
	},
	["sharktiger"] = {
		label = "Tiger Shark",
		weight = 5000,
		stack = true,
		close = true,
	},
	
	["fishbait"] = {
		label = "Fishing Bait",
		weight = 400,
		stack = true,
		close = true,
	},
	
	["fishingrod"] = {
		label = "Fishing Rod",
		weight = 750,
		stack = true,
		close = true,
	},
	
	["leather_bad"] = {
		label = "Poor Leather",
		weight = 300,
		stack = true,
		close = true,
	},
	
	["leather_good"] = {
		label = "Good Leather",
		weight = 600,
		stack = true,
		close = true,
	},
	
	["leather_perfect"] = {
		label = "Perfect Leather",
		weight = 800,
		stack = true,
		close = true,
	},
	
	["meat"] = {
		label = "Fresh Meat",
		weight = 500,
		stack = true,
		close = true,
	},	
```

{% endtab %}
{% endtabs %}

## SQL

Execute `JPR - Job System.sql` file in your SQL

{% hint style="danger" %}
This is mandatory!
{% endhint %}

{% hint style="success" %}
Enjoy it
{% endhint %}
