# Config

#### &#x20;Example Config Snippets

**Male – Short Sleeve:**

```lua
[1] = {
    outfitLabel = 'Short Sleeve',
    outfitData = {
        ['pants'] = { item = 24, texture = 0 },
        ['arms'] = { item = 19, texture = 0 },
        ['t-shirt'] = { item = 58, texture = 0 },
        ['torso2'] = { item = 55, texture = 0 },
        ['shoes'] = { item = 51, texture = 0 },
        ['hat'] = { item = -1, texture = -1 },
    }
}
```

**Male – SWAT:**

```lua
[5] = {
    outfitLabel = 'SWAT',
    outfitData = {
        ['pants'] = { item = 130, texture = 1 },
        ['arms'] = { item = 172, texture = 0 },
        ['vest'] = { item = 15, texture = 2 },
        ['torso2'] = { item = 336, texture = 3 },
        ['mask'] = { item = 52, texture = 0 },
        ['hat'] = { item = 150, texture = 0 },
    }
}
```

**Female – Trooper Black:**

```lua
[4] = {
    outfitLabel = 'Trooper Black',
    outfitData = {
        ['pants'] = { item = 133, texture = 0 },
        ['arms'] = { item = 31, texture = 0 },
        ['torso2'] = { item = 327, texture = 8 },
        ['shoes'] = { item = 52, texture = 0 },
        ['hat'] = { item = 0, texture = 0 },
    }
}
```
