mirror of
https://github.com/jimathy/jim_bridge.git
synced 2026-08-17 05:56:02 +01:00
Start adding stashEditMetadata()
Need help with this one `ox_inv` provides an easy function for this but most inventories don't seem to support editing specific items in a stash `qb-inv` currently you need to forcibly edit the sql others I'm I'm not too sure about yet
This commit is contained in:
@@ -103,6 +103,10 @@ local InvFunc = {
|
|||||||
-- Add fallback if ox can't find the stash and returns a boolean
|
-- Add fallback if ox can't find the stash and returns a boolean
|
||||||
return type(stash) == "table" and stash.items or {}
|
return type(stash) == "table" and stash.items or {}
|
||||||
end,
|
end,
|
||||||
|
stashEditMetadata =
|
||||||
|
function(stash, slot, metadata)
|
||||||
|
exports[OXInv]:SetMetadata(stash, slot, metadata)
|
||||||
|
end,
|
||||||
stashAddItem =
|
stashAddItem =
|
||||||
function(stashItems, stashName, items)
|
function(stashItems, stashName, items)
|
||||||
|
|
||||||
@@ -207,6 +211,13 @@ local InvFunc = {
|
|||||||
function(stashName)
|
function(stashName)
|
||||||
return exports[CoreInv]:getInventory(stashName)
|
return exports[CoreInv]:getInventory(stashName)
|
||||||
end,
|
end,
|
||||||
|
stashEditMetadata =
|
||||||
|
function(stash, slot, metadata)
|
||||||
|
local itemData = exports[CoreInv]:getItemBySlot(stash, slot) or {}
|
||||||
|
if itemData then
|
||||||
|
exports[CoreInv]:setItem(stash, itemData.item, itemData.count, metadata)
|
||||||
|
end
|
||||||
|
end,
|
||||||
stashAddItem =
|
stashAddItem =
|
||||||
function(stashItems, stashName, items)
|
function(stashItems, stashName, items)
|
||||||
--
|
--
|
||||||
@@ -306,6 +317,10 @@ local InvFunc = {
|
|||||||
function(stashName)
|
function(stashName)
|
||||||
return exports[OrigenInv]:getInventory(stashName)
|
return exports[OrigenInv]:getInventory(stashName)
|
||||||
end,
|
end,
|
||||||
|
stashEditMetadata =
|
||||||
|
function(stash, slot, metadata)
|
||||||
|
exports[OrigenInv]:setMetadata(stash, slot, metadata)
|
||||||
|
end,
|
||||||
stashAddItem =
|
stashAddItem =
|
||||||
function(stashItems, stashName, items)
|
function(stashItems, stashName, items)
|
||||||
--
|
--
|
||||||
@@ -416,6 +431,10 @@ local InvFunc = {
|
|||||||
function(stashName)
|
function(stashName)
|
||||||
return exports[CodeMInv]:GetStashItems(stashName)
|
return exports[CodeMInv]:GetStashItems(stashName)
|
||||||
end,
|
end,
|
||||||
|
stashEditMetadata =
|
||||||
|
function(stash, slot, metadata)
|
||||||
|
|
||||||
|
end,
|
||||||
stashAddItem =
|
stashAddItem =
|
||||||
function(stashItems, stashName, items)
|
function(stashItems, stashName, items)
|
||||||
--
|
--
|
||||||
@@ -529,6 +548,10 @@ local InvFunc = {
|
|||||||
function(stashName)
|
function(stashName)
|
||||||
return exports[TgiannInv]:GetSecondaryInventoryItems("stash", stashName)
|
return exports[TgiannInv]:GetSecondaryInventoryItems("stash", stashName)
|
||||||
end,
|
end,
|
||||||
|
stashEditMetadata =
|
||||||
|
function(stash, slot, metadata)
|
||||||
|
|
||||||
|
end,
|
||||||
stashAddItem =
|
stashAddItem =
|
||||||
function(stashItems, stashName, items)
|
function(stashItems, stashName, items)
|
||||||
--
|
--
|
||||||
@@ -692,6 +715,10 @@ local InvFunc = {
|
|||||||
return result and json.decode(result) or {}
|
return result and json.decode(result) or {}
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
stashEditMetadata =
|
||||||
|
function(stash, slot, metadata)
|
||||||
|
|
||||||
|
end,
|
||||||
stashAddItem =
|
stashAddItem =
|
||||||
function(stashItems, stashName, items)
|
function(stashItems, stashName, items)
|
||||||
--
|
--
|
||||||
@@ -880,6 +907,23 @@ local InvFunc = {
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
stashEditMetadata =
|
||||||
|
function(stash, slot, metadata)
|
||||||
|
local stashData = getStash(stash)
|
||||||
|
for i = 1, #stashData do
|
||||||
|
if stashData[i].slot == slot then
|
||||||
|
print("found slot")
|
||||||
|
stashData[i].info = metadata
|
||||||
|
end
|
||||||
|
jsonPrint(stashData[i])
|
||||||
|
end
|
||||||
|
|
||||||
|
debugPrint("^6Bridge^7: ^3stashEditMetadata^7: ^2Saving ^3QB^2 stash '^6"..stash.."^7'")
|
||||||
|
MySQL.Async.insert('INSERT INTO stashitems (stash, items) VALUES (:stash, :items) ON DUPLICATE KEY UPDATE items = :items', {
|
||||||
|
['stash'] = stash,
|
||||||
|
['items'] = json.encode(stashData)
|
||||||
|
})
|
||||||
|
end,
|
||||||
stashAddItem =
|
stashAddItem =
|
||||||
function(stashItems, stashName, items)
|
function(stashItems, stashName, items)
|
||||||
--
|
--
|
||||||
@@ -2246,6 +2290,16 @@ function openStash(data)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
function stashEditMetadata(stash, slot, metadata)
|
||||||
|
for i = 1, #InvFunc do
|
||||||
|
local inv = InvFunc[i]
|
||||||
|
if isStarted(inv.invName) then
|
||||||
|
inv.stashEditMetadata(stash, slot, metadata)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- Wrapper function for opening stash from the server.
|
-- Wrapper function for opening stash from the server.
|
||||||
-- Messy but not much else I can do about it.
|
-- Messy but not much else I can do about it.
|
||||||
RegisterNetEvent(getScript()..":server:openServerStash", function(data)
|
RegisterNetEvent(getScript()..":server:openServerStash", function(data)
|
||||||
|
|||||||
Reference in New Issue
Block a user