> 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/radio-v2/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-radiov2</mark> folder in the <mark style="color:$success;">resources</mark> folder.

## Step 2: <mark style="color:blue;">Install SQL</mark>

**Install the&#x20;**<mark style="color:$success;">**SQL**</mark>**&#x20;file from the&#x20;**<mark style="color:$success;">**\[SETUP]**</mark>**&#x20;folder in the downloaded&#x20;**<mark style="color:$success;">**ZIP**</mark>**.**

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

**The radio item is most likely already present in your server, but if not, you can follow the steps below&#x20;**<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]**</mark>**&#x20;directory.**

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

```sql
INSERT INTO items (name, label)
VALUES 
    ('radio', 'Radio'),
    ('jammer', 'Jammer');
```

{% endtab %}

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

```lua
radio                        = { name = 'radio', label = 'Radio', weight = 2000, type = 'item', image = 'radio.png', unique = true, useable = true, shouldClose = true, description = 'You can communicate with this through a signal' },
jammer                        = { name = 'jammer', label = 'Jammer', weight = 2000, type = 'item', image = 'jammer.png', unique = true, useable = true, shouldClose = true, description = 'You can communicate with this through a signal' },
```

{% endtab %}

{% tab title="ox-inventory" %}

```lua
['radio'] = {
	label = 'Radio',
	weight = 1000,
	stack = false
},

['jammer'] = {
	label = 'Jammer',
	weight = 1000,
	stack = false,
},
```

{% endtab %}
{% endtabs %}

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

Start <mark style="color:$success;">stg-radiov2</mark> in server.cfg.

```lua
ensure stg-radiov2
```
