For the complete documentation index, see llms.txt. This page is also available as Markdown.

Installation

1

Download the resource

Download resource from CFX Portal.

2

Move the downloaded resources

Move downloaded resources to your server´s 📁resources folder.

📁 server
└── 📁 resources
    ├── 📁 rcore_clothing
    ├── 📁 rcore_clothing_for_photos
    └── 📁 (other resources)
3

Add ACE permissions to server.cfg

Our script is using fivem ACE permission system so we need add permission for our resource to be able to add permission to our predefined groups. Insert this lines into your server.cfg / permissions.cfg (or wherever you store your ACE permissions).

add_ace resource.rcore_clothing command.add_ace allow
add_ace resource.rcore_clothing command.add_principal allow
add_ace resource.rcore_clothing command.remove_principal allow
4

Ensure the resource in server.cfg

In server.cfg ensure rcore_clothing after your framework, inventory and target resources. Also ensure rcore_clothing_for_photos, but only when you want to take photos of clothing items!

Example:

-- ensure your_framework_resource
-- ensure your_inventory_resource
-- ensure your_target_resource
ensure rcore_clothing
ensure rcore_clothing_for_photos
-- ensure your_other_resources

🗄️ Database

The resource import all SQL files on its own there is no need to worry about inserting some tables.

Framework changes

  • If you are using ESX:

    • Disable skinchanger and esx_skin.

    • Disable any existing clothing/charcreator resources in general.

  • If you are using QBCore:

    • Disable qb-clothing

    • Disable any existing clothing/charcreator resources in general.

Migration

In case you want to migrate player clothing and outfits from previous script, check migration page.

Migration

Last updated