> For the complete documentation index, see [llms.txt](https://stg-store.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://stg-store.gitbook.io/documentation/scripts/fruit-job/installation.md).

# Installation

## Step 1: <mark style="color:blue;">Move resource</mark>

Extract the zip you downloaded from keymaster and drop the <mark style="color:$success;">stg-fruit</mark> folder in the <mark style="color:$success;">resources</mark> folder.

## Step 2: <mark style="color:blue;">Add Items</mark>

:information\_source: <mark style="color:$success;">**it works with all inventories, I’ve just included a few examples.**</mark>

:frame\_photo: **You can find the item images inside the&#x20;**<mark style="color:$success;">**images**</mark>**&#x20;folder located in the&#x20;**<mark style="color:$success;">**\[SETUP]/item-images**</mark>**&#x20;folder.**

{% tabs %}
{% tab title="es\_extended" %}

```sql
INSERT INTO items (name, label) VALUES
  ('apple', 'Apple'),
  ('applejuice', 'Apple Juice'),
  ('basket', 'Basket');
```

{% endtab %}

{% tab title="qb-core" %}

```lua
apple                         = { name = 'apple',       label = 'Apple',       weight = 160,  type = 'item', image = 'apple.png',       unique = false, useable = false,  shouldClose = false,  description = 'A fresh apple picked from the orchard' },
applejuice                    = { name = 'applejuice',  label = 'Apple Juice', weight = 160,  type = 'item', image = 'applejuice.png',  unique = false, useable = false,  shouldClose = false,  description = 'Bottled apple juice—refreshing and sweet' },
basket                        = { name = 'basket',      label = 'Basket',      weight = 160,  type = 'item', image = 'basket.png',      unique = false,  useable = false,  shouldClose = false,  description = 'A sturdy fruit basket for carrying your harvest' },
```

{% endtab %}

{% tab title="ox\_inventory" %}

```lua
['apple'] = {
	label = 'Apple',
	weight = 1,
	stack = true
},

['applejuice'] = {
	label = 'Apple Juice',
	weight = 1,
	stack = true,
},

['basket'] = {
	label = 'Basket',
	weight = 1000,
	stack = true,
},
```

{% endtab %}
{% endtabs %}

## Step 3: <mark style="color:blue;">Start script</mark>

Start <mark style="color:blue;">stg-fruit</mark> in server.cfg.

```
ensure stg-fruit
```
