QB

Deleting Scripts

  1. If you have qb-clothing delete

Edit qb-multicharacter

  1. Open qb-multicharacter\server\main.lua

QBCore.Functions.CreateCallback("qb-multicharacter:server:getSkin", function(_, cb, cid)
    local result = MySQL.query.await('SELECT * FROM playerskins WHERE citizenid = ? AND active = ?', {cid, 1})
    if result[1] ~= nil then
        cb(result[1].model, result[1].skin)
    else
        cb(nil)
    end
end)
  1. Find the top code and replace it with the bottom one

QBCore.Functions.CreateCallback("qb-multicharacter:server:getSkin", function(_, cb, cid)
    local result = MySQL.single.await('SELECT `model`, `skin` FROM `tgiann_skin` WHERE `citizenid` = ? LIMIT 1', {cid})
    if result and result.model and result.skin then
        cb(result.model, result.skin)
    else
        cb(nil)
    end
end)

Last updated