function refreshSecondaryInventory()
ESX.TriggerServerCallback('disc-inventoryhud:canOpenInventory', function(canOpen)
if canOpen or secondInventory.type == 'shop' then
if isInInventory == true then
TriggerServerEvent('disc-inventoryhud:openInventory', secondInventory)
ESX.TriggerServerCallback('disc-inventoryhud:getSecondaryInventory', function(data)
SendNUIMessage({
action = "setSecondInventoryItems",
itemList = data.inventory,
invOwner = data.invId,
invTier = data.invTier,
money = {
cash = data.cash,
black_money = data.black_money,
},
unlock = 1
})
if isInInventory == true then
SendNUIMessage({
action = "show",
type = 'secondary'
})
end
end, secondInventory.type, secondInventory.owner)
end
else
if isInInventory == true then
exports["mythic_notify"]:SendAlert("error", "Envanter zaten başkasında açık olduğundan dolayı kapatıldı.", 5000)
SendNUIMessage({
action = "hide",
type = 'secondary'
})
end
end
end, secondInventory.type, secondInventory.owner)
end