# Installation

## Install Steps

OX\_Inventory is REQUIRED

1 - Install the script in your resource folder&#x20;

2 - Import all of your cards - 391x591px

3 - Add all cards to your ox\_inventory items list example below

```lua
['mr-brown'] = {
        label = "Mr Brown Card",
        weight = 50,
        stack = true,
        description = "ffffffff",
        image = "mr-brown.png",
    },
```

4 - Make sure to add each card to the config file. Make sure item = the item name in ox-inventory. Rarity should be 1 of the 3 options above in Config.Rarities.&#x20;

```lua
["22-member"] = {
        label = "22 Member",
        rarity = "Ultra Rare",
        series = "Series 1", -- NEW
        description = "A mad 22 member out in the wild", -- NEW
        image = "22-member.png",
        item = "22-member"
    },
```

&#x20;5 - Submit all of the information in each item if you are using the inbuilt overlay. IF you are using cards with data already showing on the image then go to html/config.js and set **ShowCardInfo: false,**

6 - Add boosterpack to your item list in ox\_inventory - The boosterpacks can be purchased from pretty much anywhere you choose, simply add them to your shop.

```lua
['boosterpack'] = {
        label = "Booster Pack",
        weight = 100,
        stack = true,
        close = true,
        description = "Contains a random trading card!",
    },
```

Join our discord if you have any issues - <https://discord.gg/5h352kPkWV>
