# Installation

{% hint style="danger" %}
Resource must be named <mark style="color:blue;">nalajcie\_weed</mark> to work properly.
{% endhint %}

{% tabs %}
{% tab title="ESX" %}

1. **Ensure all dependencies are installed**

> *Be sure all* [*dependencies*](https://nalajcie-store.gitbook.io/nalajcie-scripts/paid-scripts/quickstart/dependencies) *are installed, running, and utilizing the latest versions available.*

1. **Edit config**

> *Configure the script to your servers needs, everything can be customized!*
> {% endtab %}

{% tab title="" %}

{% endtab %}
{% endtabs %}

### Just add it to your items ( ox\_inventory/data/items.lua )

```
	['plantpot'] = {
		label = 'Pot',
		weight = 150,
		stack = false,
		consume = 0
	},

	['plantpot_ground'] = {
		label = 'Flower pot with ground',
		weight = 300,
		stack = false,
		consume = 0
	},

	['weedscissors'] = {
		label = 'Scissors',
		weight = 100,
		stack = false,
		consume = 0
	},

	['shovel'] = {
		label = 'Shovel',
		weight = 100,
		stack = false,
		consume = 0
	},

	['ground'] = {
		label = 'Ground',
		weight = 150,
		stack = false,
		consume = 0
	},

	['lighter'] = {
		label = 'Lighter',
		weight = 80,
		stack = true,
		consume = 0
	},

	['lemon_grinder'] = {
		label = 'Grinder',
		weight = 120,
		stack = true,
		consume = 0
	},

	['plant_fertilizer'] = {
		label = 'Fertilizer',
		weight = 200,
		stack = true,
		consume = 0
	},

	['ogkush_seed'] = {
		label = 'Seed OGKush',
		weight = 20,
		stack = true,
		consume = 0,
		client = {
			export = 'nalajcie_plant.ogkush_seed'
		}
	},

	['ogkush_top'] = {
		label = 'Top OGKush',
		weight = 10,
		stack = true,
		consume = 0,
		client = {
			export = 'nalajcie_plant.ogkush_top'
		}
	},

	['ogkush_gram'] = {
		label = 'Gram OGKush',
		weight = 1,
		stack = true,
		consume = 0
	},

	['rainbowbelts_seed'] = {
		label = 'Seed Rainbow Belts',
		weight = 20,
		stack = true,
		consume = 0,
		client = {
			export = 'nalajcie_plant.rainbowbelts_seed'
		}
	},

	['rainbowbelts_top'] = {
		label = 'Top Rainbow Belts',
		weight = 10,
		stack = true,
		consume = 0,
		client = {
			export = 'nalajcie_plant.rainbowbelts_top'
		}
	},

	['rainbowbelts_gram'] = {
		label = 'Gram Rainbow Belts',
		weight = 1,
		stack = true,
		consume = 0
	},

```
