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

# Power Plant Job

<figure><img src="/files/C9UuLa98hUVGam91PI1y" alt=""><figcaption></figcaption></figure>

***

## Dependencies

Ensure that you have the dependencies below downloaded and ensured in your resources.

{% hint style="warning" %}
Ox Lib: <https://github.com/overextended/ox_lib/releases>

Renewed Lib: <https://github.com/Renewed-Scripts/Renewed-Lib/releases/tag/v2.0.7>

Bl Dialog: <https://github.com/Byte-Labs-Studio/bl_dialog>

Minigame: <https://github.com/EZ-Scripts/ez_electricminigame>
{% endhint %}

## Installation

#### <mark style="color:$primary;">Ox Inventory</mark>

Add the following in **ox\_inventory > data > items.lua**

```lua
['kevin_technicianbag'] = {
    label = 'Technician Bag',
    weight = 5000,
    stack = false,
    close = true,
    description = "Bag containing technician tools",
},
['kevin_pipewrench'] = {
    label = 'Pipe Wrench',
    weight = 1000,
    stack = false,
    close = true,
    description = "Heavy duty pipe wrench",
},
```

### Qb | Ps Inventory

Add the following in qb-core > shared > items.lua

{% code overflow="wrap" fullWidth="false" %}

```lua
kevin_technicianbag                     = { name = 'kevin_technicianbag', label = 'Technician Bag', weight = 5000, type = 'item', image = 'kevin_technicianbag.png', unique = true, useable = true, shouldClose = true, description = 'Bag containing technician tools' },
    kevin_pipewrench                        = { name = 'kevin_pipewrench', label = 'Pipe Wrench', weight = 1000, type = 'item', image = 'kevin_pipewrench.png', unique = true, useable = true, shouldClose = true, description = 'Heavy duty pipe wrench' },
```

{% endcode %}

{% hint style="danger" %}
Please note that you need to add those 2 items to whichever shops systems you use for players to buy tools/items.
{% endhint %}

{% hint style="success" %}
🎉 Installation Completed. Next step is just customization/adjusting config files to you liking
{% endhint %}
