Setup

LE Appearance for ESX Legacy

Installation

  1. Download latest version asset from https://portal.cfx.re/arrow-up-right named "le-appearance"

  2. Unzip it and put it inside of the resource folder and make sure its being started in server.cfg

  3. Change the "Multicharacter:LoadSkinCreator" function in esx-multicharacter or any other multicharacter with some modifications.

In esx-multicharacter on line 187.

function Multicharacter:LoadSkinCreator(skin)    
    TriggerEvent("skinchanger:loadSkin", skin, function()
        DoScreenFadeIn(600)
        SetPedAoBlobRendering(self.playerPed, true)
        ResetEntityAlpha(self.playerPed)

        TriggerEvent("esx_skin:openSaveableMenu", function()
            Multicharacter.finishedCreation = true
        end, function()
            Multicharacter.finishedCreation = true
        end)
    end)
end

Change it to this

Last updated