> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_clothing/faq.md).

# FAQ

<details>

<summary>Does the script support clothing as items?</summary>

No, it doesn't.

When you buy clothing, it is put on directly on your ped, however everything you buy is also saved to your changing room/wardrobe that you can then go to and change into previously owned clothes for free.

</details>

<details>

<summary>Will it work with my addon/replace clothing?</summary>

Yes! Our clothing does not rely on the usual IDs of GTA clothes, so every pre-configured clothing will work fine whether you have addons and replaces.

</details>

<details>

<summary>How does it work with replaces and addons?</summary>

As you may have noticed, every clothing in the script can be filtered using colors, names etc. This also works with your replaces and addons, because we implemented a pipeline, which detects replaces/addons, takes photos of them and detects colors.

</details>

<details>

<summary>Why don't neckwear, earrings, and decals have photos?</summary>

Said categories are usually too small to be taken a photo of, so players can choose them using the usual way with IDs.

</details>

<details>

<summary>Why are arms and gloves free in every shop?</summary>

Arms and gloves need to change all the time, so we think restricting them to certain places would be limiting to players.

</details>

<details>

<summary>Why are undershirts, decals, and neckwear available everywhere and are the same price in every type of shop?</summary>

Due to the specific usage of these categories, we think making them exclusive to certain shops with varying prices would restrain the players creativity.

</details>

<details>

<summary>How do I create a plastic surgery shop?</summary>

Plastic surgery shop can be created in few seconds thanks to our powerful shop configs.

All you need to do is choose a shop in config, or create a new one, and assign the plastic surgery alias to it in the Config.ClothingShops list:

```lua
{
    label = 'Plastic Surgery',
    type = 'plastic_surgery',
    blip = { title = "Plastic Surgery", colour = 0, id = 71 },
    pos = vector4(-33.64, -154.56, 56.11, 330.0),
    config = SHOP_CONFIG_ALIAS.PLASTIC_SURGEON,
},
```

To learn more about creating your own shops, read the [Shop Configs](/paid-resources/rcore_clothing/configs/shop_configs.md) page where you can see how to remove certain categories from shop or create a shop to sell only specific stuff (like plastic surgery or barbershop).

</details>

<details>

<summary>How can I make players pay for character features (hair, makeup..)?</summary>

Check our [Pricing Config](/paid-resources/rcore_clothing/configs/config_price.md) page to learn how to make character features paid.

</details>

<details>

<summary>How do I change which clothes are available in char creator?</summary>

Admins can use /opencharcreator to open the char creator and then use the [Stock Management](/paid-resources/rcore_clothing/features/admin_mode/stock_management.md) admin mode to edit the clothes available in the char creator.

</details>

<details>

<summary>How do I use the ID Mode by default?</summary>

If you want to use the ID mode by default instead of the clothes with photos, please be aware that you will lose a lot of the functionality of the script.

If you still wwant to do it, set UseIDModeByDefault to true in the config.

</details>

<details>

<summary>How do I start over?</summary>

To start completely over, you will have to remove all 'rcore\_clothing' database tables. Be very careful and make sure first that you're okay with losing all clothing data you've already made (player skins, shop assignments, blacklists, etc.). We highly recommend doing a database backup first.

When you're sure, you can proceed with dropping/deleting all clothing database tables (not just clearing rows). Then restart the script and wait a few seconds for all default data to be inserted back, so you can start over fresh.

</details>
