QBOX

  1. Open qbx_core/server/player.lua file

  2. Find function SetMoney(identifier, moneyType, amount, reason)

  3. Replace with the following

function SetMoney(identifier, moneyType, amount, reason, forInventory)
  1. Find emitMoneyEvents(player.PlayerData.source, player.PlayerData.money, moneyType, amount, 'set', reason, difference)

  2. Replace with the following

emitMoneyEvents(player.PlayerData.source, player.PlayerData.money, moneyType, amount, 'set', reason, difference, forInventory)
  1. Find local function emitMoneyEvents(source, playerMoney, moneyType, amount, actionType, reason, difference)

  2. Replace with the following

local function emitMoneyEvents(source, playerMoney, moneyType, amount, actionType, reason, difference, forInventory)
  1. Find this code block

if accountsAsItems[oxMoneyType] then
    exports.ox_inventory:SetItem(source, oxMoneyType, playerMoney[moneyType])
end
  1. Replace with the following

if not forInventory then
    local isMoneyItem, moneyItemName = exports["tgiann-inventory"]:IsMoneyItem(moneyType)
    if isMoneyItem then
        exports["tgiann-inventory"]:SetItem(source, moneyItemName, playerMoney[moneyType])
    end
end
  1. Add the following item to the itemlist

money_item = { name = 'money_item', label = 'Money', weight = 0, type = 'item', image = 'money.webp', unique = false, useable = false, shouldClose = false, description = 'Green Paper' },

Last updated