QBCore

This is NOT a laptop problem, for some reason in the latest qb-core exists a bug where existing players can't have new money accounts: https://github.com/qbcore-framework/qb-core/issues/1110 If you are using the latest qb-core and you get the following message on console:

Account cosmo doesn't exist in your Framework

And you are 200% sure the account is registered correctly in your qb-core, is because of the qb-core bug, to fix it you need to add the code I provide here: https://github.com/qbcore-framework/qb-core/issues/1110#issuecomment-2131709479

If using latest qb-core you need to revert some changes they made that is breaking the items.

Go to qb-core/server/functions replace function QBCore.Functions.CreateUseableItem with the following:

function QBCore.Functions.CreateUseableItem(item, data)
    QBCore.UsableItems[item] = data
end

This errors are caused by qb-core and not my scripts.

Last updated