> For the complete documentation index, see [llms.txt](https://mscripts.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mscripts.gitbook.io/docs/qbcore/general/qb-beach-activities/installation.md).

# Installation

## qb-core/shared/items.lua

```
["shovel"]              = {["name"] = "shovel",             ["label"] = "Shovel",           ["weight"] = 50,    ["type"] = "item",  ["image"] = "shovel.png",           ["unique"] = false,     ["useable"] = true,    ["shouldClose"] = false,    ["combinable"] = nil,   ["description"] = ""},
["bucket"]              = {["name"] = "bucket",             ["label"] = "Bucket",           ["weight"] = 50,    ["type"] = "item",  ["image"] = "bucket.png",           ["unique"] = false,     ["useable"] = true,    ["shouldClose"] = false,    ["combinable"] = nil,   ["description"] = ""},
```

## mz-skills/config.lua

```
Config.Skills = {
    ["Strength"] = {
        ["Current"] = 0,
        ["RemoveAmount"] = 0,
        ["Stat"] = "STRENGTH_ABILITY",
        ['icon'] = 'fas fa-trash', 
    }, 
    ["Lungs"] = {
        ["Current"] = 0,
        ["RemoveAmount"] = 0,
        ["Stat"] = "LUNGS_ABILITY",
        ['icon'] = 'fas fa-screwdriver', 
    },
    ["Stamina"] = {
        ["Current"] = 0,
        ["RemoveAmount"] = 0,
        ["Stat"] = "STAMINA_ABILITY",
        ['icon'] = 'fas fa-laptop-code',
    }, 
}
```

## ps-buffs/shared/config.lua

```
Config.Buffs = {
    ['stamina'] = {
        iconColor = "#ffffff",
        iconName = 'wind',
        maxTime = 3600000,
        progressColor = "#FFD700",
        type = 'buff'
    },
    ['strength'] = {
        iconColor = "#ffffff",
        iconName = 'dumbbell',
        maxTime = 3600000,
        progressColor = "#FFD700",
        type = 'buff'
    },
    ['lungs'] = {
        iconColor = "#ffffff",
        iconName = 'swimmer',
        maxTime = 3600000,
        progressColor = "#FFD700",
        type = 'buff'
    },
}
```
