# Configuration

### Character Creation Menu

This is the list of menus that will be visible when character creation opens. Selected means which menu will be selected by default after opening. You can remove a menu from character creation if you don't want that. Example:

{% tabs %}
{% tab title="Original" %}

```lua
Config.CharacterCreationMenu = {
    {menu = "character", label = "Character", selected = true},
    {menu = "clothing", label = "Clothing", selected = false},
    {menu = "accessoires", label = "Accessories", selected = false},
    {menu = "tattoos", label = "Tattoos", selected = false},
}
```

{% endtab %}

{% tab title="Modified" %}

```lua
Config.CharacterCreationMenu = {
    {menu = "character", label = "Character", selected = true},
    {menu = "clothing", label = "Clothing", selected = false},
    {menu = "accessoires", label = "Accessories", selected = false},
}
```

tattoos option removed
{% endtab %}
{% endtabs %}

### Accessories

Must set character default accessorial value. As example, for male characters, I don't have any shoes in clothing id 34. Remember, if you install a clothing pack, this value will be changed. So, you have to set values again in Config.AccessoryDefaults.

```lua
Config.AccessoryDefaults = {
    torso = {
        male = {
            ["t-shirt"] = {item = 15, texture = 0},
            ["torso2"] = {item = 15, texture = 0},
            ["arms"] = {item = 15, texture = 0},
        },
        female = {
            ["t-shirt"] = {item = 15, texture = 0},
            ["torso2"] = {item = 15, texture = 0},
            ["arms"] = {item = 15, texture = 0},
        },
    },
    pants = {
        male = {
            ["pants"] = {item = 14, texture = 0},
        },
        female = {
            ["pants"] = {item = 15, texture = 0},
        },
    },
    shoes = {
        male = {
            ["shoes"] = {item = 34, texture = 0},
        },
        female = {
            ["shoes"] = {item = 35, texture = 0},
        },
    },
    hat = {
        male = {
            ["hat"] = {item = -1, texture = 0},
        },
        female = {
            ["hat"] = {item = -1, texture = 0},
        },
    },
    vest = {
        male = {
            ["vest"] = {item = 0, texture = 0},
        },
        female = {
            ["vest"] = {item = 0, texture = 0},
        },
    },
    chain = {
        male = {
            ["accessory"] = {item = 0, texture = 0},
        },
        female = {
            ["accessory"] = {item = 0, texture = 0},
        },
    },
    mask = {
        male = {
            ["mask"] = {item = 0, texture = 0},
        },
        female = {
            ["mask"] = {item = 0, texture = 0},
        },
    },
    glasses = {
        male = {
            ["glass"] = {item = 0, texture = 0},
        },
        female = {
            ["glass"] = {item = 5, texture = 0},
        },
    },
    bag = {
        male = {
            ["bag"] = {item = 0, texture = 0},
        },
        female = {
            ["bag"] = {item = 0, texture = 0},
        },
    },
    ears = {
        male = {
            ["ear"] = {item = -1, texture = 0},
        },
        female = {
            ["ear"] = {item = -1, texture = 0},
        },
    },
    watches = {
        male = {
            ["watch"] = {item = -1, texture = 0},
        },
        female = {
            ["watch"] = {item = -1, texture = 0},
        },
    },
}
```

### Tattoos

You can disable tattoos or add custom tattoos in skinchanger/config-tattoos.lua

### Peds

You can add or remove ped models from skinchanger/config.lua

If you don't need any GTA peds then keep mp\_m\_freemode\_01 & mp\_f\_freemode\_01 and remove others.

### Custom Faces

If you are using addon clothing with custom faces & skin colors, you can set the max value in skinchanger/config.lua

```lua
Config.MaxFaces = {
    male = 45,
    female = 45,
}

Config.MaxSkinColors = {
    male = 15,
    female = 15,
}
```
