π§βπ¦²Custom skin system
To adapt the script to another skin system, here you can find the functions that need to be adapted
CLIENT
if Config.PlayerSkinSystem == "custom" then
PlayerSkinSystem = {
SetOutfit = function(components, props)
exports['custom']:setPedComponents(cache.ped, components)
exports['custom']:setPedProps(cache.ped, props)
end,
GetComponents = function()
return exports['custom']:getPedComponents(cache.ped)
end,
GetProps = function()
return exports['custom']:getPedProps(cache.ped)
end,
}
endLast updated