βš’οΈClothing Framework

This page contains tutorials on how to implement script APIs in your clothing frameworks.

qb-clothing

circle-exclamation

Save Skin Exports

Step 1: Navigate to qb-clothing/client/main.lua

Step 2: Find local function SaveSkin()

Step 3: Replace the whole function. (Exports will be added)

local function SaveSkin()
    local model = GetEntityModel(PlayerPedId())
    local clothing = json.encode(skinData)
    TriggerServerEvent("qb-clothing:saveSkin", model, clothing)
end
exports('SaveSkin', SaveSkin)

illenium-appearance

Skin Checks Exports

Step 1: Navigate to illenium-appearance/client/framework/(your_framework)/main.lua

Step 2: Find Framework.CachePed()

Step 3: Replace the whole function. (Check skin exports added)

Enabling Illenium Blacklist Function

Step 1: Navigate to illenium-appearance/game/customization.lua

Step 2: Find getComponentSettings function

Step 3: Replace the following code from the function.

Step 4: Find getPropSettings function

Step 5: Replace the following code from the function.

Step 6: Find getHairSettings function

Step 7: Replace the following code from the function

Last updated