๐Ÿ“–Integrations

Resource Integrations guide with other resources.

Server Side: {QBCORE Only}

Unlocked File Path:

fs_clothingitem/server/unlocked.lua

unlocked.lua
-- you can change ur banking system functions too
function addSocietyMoney(job, money)
    exports['qb-banking']:AddMoney(job,tonumber(money),'Business Transctions')
end

function getSocietyMoney(job)
    return exports['qb-banking']:GetAccountBalance(job)
end

function removeSocietyMoney(job, money)
    exports['qb-banking']:RemoveMoney(job,tonumber(money),'Business Transctions')
end

Last updated