> For the complete documentation index, see [llms.txt](https://docs.otherplanet.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.otherplanet.dev/scripts/op-multicharacter/integrations/tgiann-clothing.md).

# tgiann-clothing

{% stepper %}
{% step %}

### Go to tgiann-clothing

Find file client/editable.lua
{% endstep %}

{% step %}

### Find Function

Find function firstCharacterCreated

Before:

```lua
function firstCharacterCreated()
    if config.framework == "esx" then
        Wait(2000)
        RenderScriptCams(false, false, 1, true, true)
        DoScreenFadeIn(0)
    end
    SetFocusEntity(PlayerPedId())
    TriggerEvent("tgiann-main:afk-control", true)
    TriggerEvent('tgiann-main:checkProfileSettings')
end
```

After:

```lua
function firstCharacterCreated()
    if config.framework == "esx" then
        Wait(2000)
        RenderScriptCams(false, false, 1, true, true)
        DoScreenFadeIn(0)
    end
    SetFocusEntity(PlayerPedId())
    TriggerEvent("tgiann-main:afk-control", true)
    TriggerEvent('tgiann-main:checkProfileSettings')

    TriggerEvent('op-multicharacter:charCreationComplete')
end
```

{% endstep %}
{% endstepper %}
