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

zsx_multicharacter

Integration guide for zsx_multicharacter.


Step 1 - Config

In shared/config.lua, set:

Config.ForceAppereance = 'rcore_clothing'

Step 2 - Client: apply skin

Open client/framework/framework_functions.lua and find:

if skinData == nil then return debugPrint('Could not find a skin for user. Setting default values') end

Add this code right after it:

if Framework.AppereanceResource == 'rcore_clothing' then
    exports.rcore_clothing:setPedSkin(ped, skinData)
    return
end

Step 3 - Server: get skin

Open server/functions/characters.lua and find return skin inside Characters.ConvertSkin.

Add this code before it:

Last updated