# Config

```lua
Config = {}

-- Option to require all clothing pieces (including props) to activate scuba
Config.requireAllClothing = true -- Set to true if all pieces are required, false if only one piece is enough
-- Maximum time the player can stay underwater with scuba gear
Config.ScubaUnderwaterTime = 300.0 -- Seconds
-- Maximum time the player can stay underwater without scuba gear
Config.NoScubaUnderwaterTime = 45.0 -- Seconds
-- Enable or disable debug messages
Config.debug = false -- Set to false to turn off debug messages

-- Define male and female clothing items and props for scuba functionality
Config.scubaItems = {
    male = {
        clothing = {
            {category = 6, item = 68}, -- Shoes
            {category = 8, item = 143}, -- Shirt / Accessory
        },
        props = {
            {category = 1, item = 26}, -- Glasses
        }
    },
    female = {
        clothing = {
            {category = 6, item = 70}, -- Shoes
            {category = 8, item = 159}, -- Shirt / Accessory
        },
        props = {
            {category = 1, item = 28}, -- Glasses
        }
    }
}

```
