> 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/city-flyers.md).

# City Flyers

## 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>

Bl Dialog: <https://github.com/Byte-Labs-Studio/bl_dialog>
{% endhint %}

### Installation

### Ox Inventory

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

```lua
['kevin_flyers'] = {
    label = 'Promotion Flyers',
    weight = 0,
    stack = true,
    close = true,
},
```

### Qb | Ps Inventory

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

```lua
kevin_flyers = {
    name = 'kevin_flyers',
    label = 'Promotion Flyers',
    weight = 0,
    type = 'item',
    image = 'kevin_flyers.png',
    unique = false,
    useable = true,
    shouldClose = true,
},
```

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