QBX
Deleting Scripts
If you have qb-clothing, qbx-clothing, illenium-appearance or any clothing script delete
Latest QBX
Edit qbx-core
Open qbx_core/server/storage/players.lua
local function fetchPlayerSkin(citizenId)
return MySQL.single.await('SELECT * FROM playerskins WHERE citizenid = ? AND active = 1', {citizenId})
endFind the top code and replace it with the bottom one
local function fetchPlayerSkin(citizenId)
local playerSkin = MySQL.single.await('SELECT `model`, `skin` FROM `tgiann_skin` WHERE `citizenid` = ? LIMIT 1', {citizenId})
return { citizenid = citizenId, model = playerSkin.model, skin = playerSkin.skin, active = true }
endOpen qbx_core/client /character.lua
Find exports['illenium-appearance'] and replace it with the one below.
exports['tgiann-clothing']Old QBX
Edit qbx-multicharacter
Open qbx-multicharacter\server\main.lua
Find the top code and replace it with the bottom one
Open qbx-multicharacter\client\main.lua
Find exports["illenium-appearance"] and replace it with the one below.
Last updated