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

QB vms_multichars

Integration guide for vms_multichars on QBCore.


Step 1 - Config

In vms_multichars/config/config.lua, set:

Config.SkinManager = "rcore_clothing"

Step 2 - Client: set ped skin

Open vms_multichars/client/main.lua and find both occurrences of:

exports['illenium-appearance']:setPedAppearance(PlayerPedId(), data)

Add this block above each occurrence:

    elseif Config.SkinManager == "rcore_clothing" then
        exports.rcore_clothing:setPedSkin(PlayerPedId(), data)

Step 3 - Server: get skin

Open vms_multichars/server/main.lua and find QBCore.Functions.CreateCallback("vms_multichars:getSkin", function(_, cb, cid).

Add this code right after that line:

Last updated