mirror of
https://github.com/jimathy/jim_bridge.git
synced 2026-08-17 05:56:02 +01:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c1e38a93bd | ||
|
|
6a3041524a | ||
|
|
f069db5c61 | ||
|
|
3b768d5c7d | ||
|
|
6b8698353b | ||
|
|
5868312388 | ||
|
|
b0b139b179 | ||
|
|
4bf4806b9e | ||
|
|
826e745fc3 |
@@ -1,6 +1,6 @@
|
|||||||
name "Jim_Bridge"
|
name "Jim_Bridge"
|
||||||
author "Jimathy"
|
author "Jimathy"
|
||||||
version "2.0.06"
|
version "2.0.07"
|
||||||
description "Framework Bridge By Jimathy"
|
description "Framework Bridge By Jimathy"
|
||||||
fx_version "cerulean"
|
fx_version "cerulean"
|
||||||
rdr3_warning 'I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible once RedM ships.'
|
rdr3_warning 'I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible once RedM ships.'
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ end
|
|||||||
--- end, true)
|
--- end, true)
|
||||||
--- ```
|
--- ```
|
||||||
function onResourceStart(func, thisScript)
|
function onResourceStart(func, thisScript)
|
||||||
debugPrint("^6Bridge^7: Registering ^3onResourceStart^7()")
|
debugPrint("^6Bridge^7: ^2Registering ^3onResourceStart^7()")
|
||||||
AddEventHandler('onResourceStart', function(resourceName)
|
AddEventHandler('onResourceStart', function(resourceName)
|
||||||
if getScript() == resourceName and (thisScript or true) then
|
if getScript() == resourceName and (thisScript or true) then
|
||||||
func()
|
func()
|
||||||
|
|||||||
@@ -14,8 +14,8 @@ Items, Vehicles, Jobs, Gangs, Core, ESX = {}, nil, nil, nil, nil, nil
|
|||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Correct QB Inventory Export
|
-- Correct QB Inventory Export
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Ensure that the QB inventory export is corrected from 'qb-inventory' to 'ps-inventory' or 'lj-inventory' if needed.
|
-- Correct ps-invetory to ls-inventory if somehow you still have that
|
||||||
Exports.QBInv = (isStarted("ps-inventory") and "ps-inventory") or (isStarted("lj-inventory") and "lj-inventory") or Exports.QBInv
|
Exports.PSInv = isStarted("lj-inventory") and "lj-inventory" or Exports.PSInv
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Framework Exports and Inventory Identifiers
|
-- Framework Exports and Inventory Identifiers
|
||||||
|
|||||||
@@ -21,6 +21,10 @@
|
|||||||
--- end
|
--- end
|
||||||
--- ```
|
--- ```
|
||||||
function isStarted(script)
|
function isStarted(script)
|
||||||
|
if not script then
|
||||||
|
print("^1Error^7: ^1Tried to check if ^3nil^2 was started^7, ^1returning ^4false^7")
|
||||||
|
return false
|
||||||
|
end
|
||||||
return GetResourceState(script):find("start") ~= nil
|
return GetResourceState(script):find("start") ~= nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -207,3 +207,54 @@ function isInventoryOpen()
|
|||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-------------------------------------------------------------
|
||||||
|
-- Item Image Retrieval
|
||||||
|
-------------------------------------------------------------
|
||||||
|
|
||||||
|
--- Retrieves the NUI link for an item's image from the active inventory system.
|
||||||
|
---
|
||||||
|
--- @param item string The item name.
|
||||||
|
--- @return string string A `nui://` link to the item's image, or an empty string if not found.
|
||||||
|
---
|
||||||
|
--- @usage
|
||||||
|
--- ```lua
|
||||||
|
--- local imageLink = invImg("health_potion")
|
||||||
|
--- if imageLink ~= "" then print(imageLink) end
|
||||||
|
--- ```
|
||||||
|
function invImg(item)
|
||||||
|
local imgLink = ""
|
||||||
|
if item ~= "" and Items[item] then
|
||||||
|
if isStarted(OXInv) then
|
||||||
|
imgLink = "nui://"..OXInv.."/web/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(QSInv) then
|
||||||
|
imgLink = "nui://"..QSInv.."/html/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(CoreInv) then
|
||||||
|
imgLink = "nui://"..CoreInv.."/html/img/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(CodeMInv) then
|
||||||
|
imgLink = "nui://"..CodeMInv.."/html/itemimages/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(OrigenInv) then
|
||||||
|
imgLink = "nui://"..OrigenInv.."/html/img/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(QBInv) then
|
||||||
|
imgLink = "nui://"..QBInv.."/html/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
imgLink = "nui://"..PSInv.."/html/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
imgLink = "nui://inventory_images/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(RSGInv) then
|
||||||
|
imgLink = "nui://"..RSGInv.."/html/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
else
|
||||||
|
print("^4ERROR^7: ^2No Inventory detected for invImg - Check starter.lua")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return imgLink
|
||||||
|
end
|
||||||
@@ -52,53 +52,6 @@ function createUseableItem(item, funct)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-------------------------------------------------------------
|
|
||||||
-- Item Image Retrieval
|
|
||||||
-------------------------------------------------------------
|
|
||||||
|
|
||||||
--- Retrieves the NUI link for an item's image from the active inventory system.
|
|
||||||
---
|
|
||||||
--- @param item string The item name.
|
|
||||||
--- @return string string A `nui://` link to the item's image, or an empty string if not found.
|
|
||||||
---
|
|
||||||
--- @usage
|
|
||||||
--- ```lua
|
|
||||||
--- local imageLink = invImg("health_potion")
|
|
||||||
--- if imageLink ~= "" then print(imageLink) end
|
|
||||||
--- ```
|
|
||||||
function invImg(item)
|
|
||||||
local imgLink = ""
|
|
||||||
if item ~= "" and Items[item] then
|
|
||||||
if isStarted(OXInv) then
|
|
||||||
imgLink = "nui://"..OXInv.."/web/images/"..(Items[item].image or "")
|
|
||||||
|
|
||||||
elseif isStarted(QSInv) then
|
|
||||||
imgLink = "nui://"..QSInv.."/html/images/"..(Items[item].image or "")
|
|
||||||
|
|
||||||
elseif isStarted(CoreInv) then
|
|
||||||
imgLink = "nui://"..CoreInv.."/html/img/"..(Items[item].image or "")
|
|
||||||
|
|
||||||
elseif isStarted(CodeMInv) then
|
|
||||||
imgLink = "nui://"..CodeMInv.."/html/itemimages/"..(Items[item].image or "")
|
|
||||||
|
|
||||||
elseif isStarted(OrigenInv) then
|
|
||||||
imgLink = "nui://"..OrigenInv.."/html/img/"..(Items[item].image or "")
|
|
||||||
|
|
||||||
elseif isStarted(QBInv) then
|
|
||||||
imgLink = "nui://"..QBInv.."/html/images/"..(Items[item].image or "")
|
|
||||||
|
|
||||||
elseif isStarted(TgiannInv) then
|
|
||||||
imgLink = "nui://inventory_images/images/"..(Items[item].image or "")
|
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
|
||||||
imgLink = "nui://"..RSGInv.."/html/images/"..(Items[item].image or "")
|
|
||||||
|
|
||||||
else
|
|
||||||
print("^4ERROR^7: ^2No Inventory detected for invImg - Check starter.lua")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return imgLink
|
|
||||||
end
|
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Adding and Removing Items
|
-- Adding and Removing Items
|
||||||
@@ -209,25 +162,32 @@ RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount,
|
|||||||
dupeWarn(src, item, amount)
|
dupeWarn(src, item, amount)
|
||||||
|
|
||||||
else
|
else
|
||||||
if isStarted(OXInv) then invName = OXInv
|
if isStarted(OXInv) then
|
||||||
|
invName = OXInv
|
||||||
exports[OXInv]:RemoveItem(src, item, remamount, nil)
|
exports[OXInv]:RemoveItem(src, item, remamount, nil)
|
||||||
|
|
||||||
elseif isStarted(QSInv) then invName = QSInv
|
elseif isStarted(QSInv) then
|
||||||
|
invName = QSInv
|
||||||
exports[QSInv]:RemoveItem(src, item, remamount)
|
exports[QSInv]:RemoveItem(src, item, remamount)
|
||||||
|
|
||||||
elseif isStarted(CoreInv) then invName = CoreInv
|
elseif isStarted(CoreInv) then
|
||||||
|
invName = CoreInv
|
||||||
exports[CoreInv]:removeItem(src, item, remamount)
|
exports[CoreInv]:removeItem(src, item, remamount)
|
||||||
|
|
||||||
elseif isStarted(OrigenInv) then invName = OrigenInv
|
elseif isStarted(OrigenInv) then
|
||||||
|
invName = OrigenInv
|
||||||
exports[OrigenInv]:removeItem(src, item, remamount)
|
exports[OrigenInv]:removeItem(src, item, remamount)
|
||||||
|
|
||||||
elseif isStarted(CodeMInv) then invName = CodeMInv
|
elseif isStarted(CodeMInv) then
|
||||||
|
invName = CodeMInv
|
||||||
exports[CodeMInv]:RemoveItem(src, item, remamount)
|
exports[CodeMInv]:RemoveItem(src, item, remamount)
|
||||||
|
|
||||||
elseif isStarted(TgiannInv) then invName = TgiannInv
|
elseif isStarted(TgiannInv) then
|
||||||
|
invName = TgiannInv
|
||||||
exports[TgiannInv]:RemoveItem(src, item, remamount)
|
exports[TgiannInv]:RemoveItem(src, item, remamount)
|
||||||
|
|
||||||
elseif isStarted(QBInv) then invName = QBInv
|
elseif isStarted(QBInv) then
|
||||||
|
invName = QBInv
|
||||||
while remamount > 0 do
|
while remamount > 0 do
|
||||||
if Core.Functions.GetPlayer(src).Functions.RemoveItem(item, 1, slot) then
|
if Core.Functions.GetPlayer(src).Functions.RemoveItem(item, 1, slot) then
|
||||||
remamount -= 1
|
remamount -= 1
|
||||||
@@ -239,7 +199,9 @@ RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount,
|
|||||||
if Config.Crafting.showItemBox then
|
if Config.Crafting.showItemBox then
|
||||||
TriggerClientEvent((isStarted(QBInv) and QBInvNew and "qb-" or "").."inventory:client:ItemBox", src, Items[item], "remove", amount or 1)
|
TriggerClientEvent((isStarted(QBInv) and QBInvNew and "qb-" or "").."inventory:client:ItemBox", src, Items[item], "remove", amount or 1)
|
||||||
end
|
end
|
||||||
elseif isStarted(PSInv) then invName = PSInv
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
invName = PSInv
|
||||||
while remamount > 0 do
|
while remamount > 0 do
|
||||||
if Core.Functions.GetPlayer(src).Functions.RemoveItem(item, 1, slot) then
|
if Core.Functions.GetPlayer(src).Functions.RemoveItem(item, 1, slot) then
|
||||||
remamount -= 1
|
remamount -= 1
|
||||||
@@ -312,17 +274,18 @@ RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount,
|
|||||||
TriggerClientEvent((isStarted(QBInv) and QBInvNew and "qb-" or "").."inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
TriggerClientEvent((isStarted(QBInv) and QBInvNew and "qb-" or "").."inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then invName = PSInv
|
||||||
|
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
||||||
|
if Config.Crafting.showItemBox then
|
||||||
|
TriggerClientEvent("ps-inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then invName = RSGInv
|
elseif isStarted(RSGInv) then invName = RSGInv
|
||||||
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
||||||
TriggerClientEvent("rsg-inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
TriggerClientEvent("rsg-inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(PSInv) then invName = PSInv
|
|
||||||
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
|
||||||
if Config.Crafting.showItemBox then
|
|
||||||
TriggerClientEvent("inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if invName == "" then
|
if invName == "" then
|
||||||
@@ -663,8 +626,25 @@ function canCarry(itemTable, src)
|
|||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
for k, v in pairs(itemTable) do
|
if QBInvNew then
|
||||||
resultTable[k] = exports[QBInv]:CanAddItem(src, k, v)
|
for k, v in pairs(itemTable) do
|
||||||
|
resultTable[k] = exports[QBInv]:CanAddItem(src, k, v)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
local items = getPlayerInv(src)
|
||||||
|
local totalWeight = 0
|
||||||
|
if not items then return false end
|
||||||
|
for _, item in pairs(items) do
|
||||||
|
totalWeight += (item.weight * item.amount)
|
||||||
|
end
|
||||||
|
for k, v in pairs(itemTable) do
|
||||||
|
local itemInfo = Items[k]
|
||||||
|
if not itemInfo and not Player.Offline then
|
||||||
|
resultTable[k] = true
|
||||||
|
else
|
||||||
|
resultTable[k] = (totalWeight + (itemInfo.weight * v)) <= InventoryWeight
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(PSInv) then
|
elseif isStarted(PSInv) then
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ local Props = {}
|
|||||||
function makeProp(data, freeze, synced)
|
function makeProp(data, freeze, synced)
|
||||||
loadModel(data.prop)
|
loadModel(data.prop)
|
||||||
local prop = CreateObject(data.prop, data.coords.x, data.coords.y, data.coords.z-1.03, synced and synced or false, synced and synced or false, false)
|
local prop = CreateObject(data.prop, data.coords.x, data.coords.y, data.coords.z-1.03, synced and synced or false, synced and synced or false, false)
|
||||||
SetEntityHeading(prop, data.coords.w + 180.0)
|
SetEntityHeading(prop, (data.coords.w or 0) + 180.0)
|
||||||
FreezeEntityPosition(prop, freeze or false)
|
FreezeEntityPosition(prop, freeze or false)
|
||||||
|
|
||||||
debugPrint("^6Bridge^7: ^1Prop ^2Created^7: '^6"..prop.."^7' | ^2Hash^7: ^7'^6"..data.prop.."^7' | ^2Coord^7: "..formatCoord(data.coords))
|
debugPrint("^6Bridge^7: ^1Prop ^2Created^7: '^6"..prop.."^7' | ^2Hash^7: ^7'^6"..data.prop.."^7' | ^2Coord^7: "..formatCoord(data.coords))
|
||||||
|
|||||||
@@ -161,31 +161,41 @@ function openShop(data)
|
|||||||
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
||||||
|
|
||||||
elseif isStarted(TgiannInv) then
|
elseif isStarted(TgiannInv) then
|
||||||
TriggerServerEvent(getScript()..':server:OpenShopTgiann', data.shop)
|
TriggerServerEvent(getScript()..':server:openServerShop', data.shop)
|
||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
if QBInvNew then
|
if QBInvNew then
|
||||||
TriggerServerEvent(getScript()..':server:OpenShopNewQB', data.shop)
|
TriggerServerEvent(getScript()..':server:openServerShop', data.shop)
|
||||||
|
else
|
||||||
|
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
||||||
|
end
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
if QBInvNew then
|
||||||
|
TriggerServerEvent(getScript()..':server:openServerShop', data.shop)
|
||||||
else
|
else
|
||||||
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
elseif isStarted(RSGInv) then
|
||||||
TriggerServerEvent(getScript()..':server:OpenShopRSG', data.shop)
|
TriggerServerEvent(getScript()..':server:openServerShop', data.shop)
|
||||||
end
|
end
|
||||||
lookEnt(data.coords)
|
lookEnt(data.coords)
|
||||||
end
|
end
|
||||||
|
|
||||||
RegisterNetEvent(getScript()..':server:OpenShopNewQB', function(data)
|
RegisterNetEvent(getScript()..':server:openServerShop', function(data)
|
||||||
exports[QBInv]:OpenShop(source, data)
|
if isStarted(QBInv) then
|
||||||
end)
|
exports[QBInv]:OpenShop(source, data)
|
||||||
|
end
|
||||||
RegisterNetEvent(getScript()..':server:OpenShopTgiann', function(data)
|
if isStarted(PSInv) then
|
||||||
exports[TgiannInv]:OpenShop(source, data)
|
exports[PSInv]:OpenShop(source, data)
|
||||||
end)
|
end
|
||||||
|
if isStarted(TgiannInv) then
|
||||||
RegisterNetEvent(getScript()..':server:OpenShopRSG', function(data)
|
exports[TgiannInv]:OpenShop(source, data)
|
||||||
exports[RSGInv]:OpenShop(source, data)
|
end
|
||||||
|
if isStarted(RSGInv) then
|
||||||
|
exports[RSGInv]:OpenShop(source, data)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
--- Registers a shop with the active inventory system.
|
--- Registers a shop with the active inventory system.
|
||||||
@@ -222,6 +232,16 @@ function registerShop(name, label, items, society)
|
|||||||
society = society,
|
society = society,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) and QBInvNew then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3PS ^2Store^7:", name, label)
|
||||||
|
exports[PSInv]:CreateShop({
|
||||||
|
name = name,
|
||||||
|
label = label,
|
||||||
|
slots = #items,
|
||||||
|
items = items,
|
||||||
|
society = society,
|
||||||
|
})
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
elseif isStarted(RSGInv) then
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3RSG ^2Store^7:", name, label)
|
debugPrint("^6Bridge^7: ^2Registering ^3RSG ^2Store^7:", name, label)
|
||||||
exports[RSGInv]:CreateShop({
|
exports[RSGInv]:CreateShop({
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ function GetStashTimeout(stashName, stop)
|
|||||||
-- If timeout has expired, update the stash items from the server.
|
-- If timeout has expired, update the stash items from the server.
|
||||||
if stashCache[stashName].timeout <= 0 then
|
if stashCache[stashName].timeout <= 0 then
|
||||||
stashCache[stashName].items = triggerCallback(getScript()..':server:GetStashItems', stashName)
|
stashCache[stashName].items = triggerCallback(getScript()..':server:GetStashItems', stashName)
|
||||||
stashCache[stashName].timeout = 15000 -- Timeout in milliseconds.
|
stashCache[stashName].timeout = 10000 -- Timeout in milliseconds.
|
||||||
CreateThread(function()
|
CreateThread(function()
|
||||||
while stashCache[stashName] and stashCache[stashName].timeout > 0 do
|
while stashCache[stashName] and stashCache[stashName].timeout > 0 do
|
||||||
stashCache[stashName].timeout -= 1000
|
stashCache[stashName].timeout -= 1000
|
||||||
@@ -144,7 +144,7 @@ function openStash(data)
|
|||||||
exports[OrigenInv]:openInventory('stash', data.stash, { label = data.label })
|
exports[OrigenInv]:openInventory('stash', data.stash, { label = data.label })
|
||||||
|
|
||||||
elseif isStarted(TgiannInv) then
|
elseif isStarted(TgiannInv) then
|
||||||
TriggerServerEvent(getScript()..':server:OpenStashTgiann', {
|
TriggerServerEvent(getScript()..':server:openServerStash', {
|
||||||
stashName = data.stash,
|
stashName = data.stash,
|
||||||
label = data.label,
|
label = data.label,
|
||||||
maxweight = data.maxWeight or 600000,
|
maxweight = data.maxWeight or 600000,
|
||||||
@@ -153,7 +153,7 @@ function openStash(data)
|
|||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
if QBInvNew then
|
if QBInvNew then
|
||||||
TriggerServerEvent(getScript()..':server:OpenStashQB', {
|
TriggerServerEvent(getScript()..':server:openServerStash', {
|
||||||
stashName = data.stash,
|
stashName = data.stash,
|
||||||
label = data.label,
|
label = data.label,
|
||||||
maxweight = data.maxWeight or 600000,
|
maxweight = data.maxWeight or 600000,
|
||||||
@@ -164,8 +164,21 @@ function openStash(data)
|
|||||||
TriggerServerEvent("inventory:server:OpenInventory", "stash", data.stash, data.stashOptions)
|
TriggerServerEvent("inventory:server:OpenInventory", "stash", data.stash, data.stashOptions)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
if QBInvNew then
|
||||||
|
TriggerServerEvent(getScript()..':server:openServerStash', {
|
||||||
|
stashName = data.stash,
|
||||||
|
label = data.label,
|
||||||
|
maxweight = data.maxWeight or 600000,
|
||||||
|
slots = data.slots or 40
|
||||||
|
})
|
||||||
|
else
|
||||||
|
TriggerEvent("inventory:client:SetCurrentStash", data.stash)
|
||||||
|
TriggerServerEvent("ps-inventory:server:OpenInventory", "stash", data.stash, data.stashOptions)
|
||||||
|
end
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
elseif isStarted(RSGInv) then
|
||||||
TriggerServerEvent(getScript()..':server:OpenStashRSG', {
|
TriggerServerEvent(getScript()..':server:openServerStash', {
|
||||||
stashName = data.stash,
|
stashName = data.stash,
|
||||||
label = data.label,
|
label = data.label,
|
||||||
maxweight = data.maxWeight or 600000,
|
maxweight = data.maxWeight or 600000,
|
||||||
@@ -181,16 +194,23 @@ function openStash(data)
|
|||||||
lookEnt(data.coords)
|
lookEnt(data.coords)
|
||||||
end
|
end
|
||||||
|
|
||||||
RegisterNetEvent(getScript()..':server:OpenStashTgiann', function(data)
|
|
||||||
exports[TgiannInv]:OpenInventory(source, 'stash', data.stashName, data)
|
|
||||||
end)
|
|
||||||
|
|
||||||
RegisterNetEvent(getScript()..':server:OpenStashQB', function(data)
|
-- Wrapper function for opening stash from the server.
|
||||||
exports[QBInv]:OpenInventory(source, data.stashName, data)
|
-- Messy but not much else I can do about it.
|
||||||
end)
|
RegisterNetEvent(getScript()..":server:openServerStash", function(data)
|
||||||
|
local src = source
|
||||||
RegisterNetEvent(getScript()..':server:OpenStashRSG', function(data)
|
if isStarted(TgiannInv) then
|
||||||
exports[RSGInv]:OpenInventory(source, data.stashName, data)
|
exports[TgiannInv]:OpenInventory(source, 'stash', data.stashName, data)
|
||||||
|
end
|
||||||
|
if isStarted(QBInv) then
|
||||||
|
exports[QBInv]:OpenInventory(source, data.stashName, data)
|
||||||
|
end
|
||||||
|
if isStarted(PSInv) then
|
||||||
|
exports[PSInv]:OpenInventory(source, data.stashName, data)
|
||||||
|
end
|
||||||
|
if isStarted(RSGInv) then
|
||||||
|
exports[RSGInv]:OpenInventory(source, data.stashName, data)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
@@ -250,8 +270,13 @@ function getStash(stashName)
|
|||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
stashResource = QBInv
|
stashResource = QBInv
|
||||||
local result = MySQL.scalar.await("SELECT items FROM "..(QBInvNew and "inventories" or "stashitem").." WHERE identifier = ?", { stashName })
|
if QBInvNew then
|
||||||
if result then stashItems = json.decode(result) end
|
local result = exports[QBInv]:GetInventory(stashName) or {}
|
||||||
|
stashItems = result.items or {}
|
||||||
|
else
|
||||||
|
local result = MySQL.scalar.await("SELECT items FROM stashitems WHERE stash = ?", { stashName })
|
||||||
|
if result then stashItems = json.decode(result) end
|
||||||
|
end
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
elseif isStarted(RSGInv) then
|
||||||
stashResource = RSGInv
|
stashResource = RSGInv
|
||||||
@@ -330,7 +355,7 @@ function stashRemoveItem(stashItems, stashName, items)
|
|||||||
debugPrint("^6Bridge^7: ^2None of this item left in stash ^3Stash^7", k, v)
|
debugPrint("^6Bridge^7: ^2None of this item left in stash ^3Stash^7", k, v)
|
||||||
stashItems[l] = nil
|
stashItems[l] = nil
|
||||||
else
|
else
|
||||||
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..QBInv, k, v)
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..QSInv, k, v)
|
||||||
exports[QSInv]:RemoveItemIntoStash(stashName[1], k, v, l)
|
exports[QSInv]:RemoveItemIntoStash(stashName[1], k, v, l)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -373,26 +398,6 @@ function stashRemoveItem(stashItems, stashName, items)
|
|||||||
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..TgiannInv, k, v)
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..TgiannInv, k, v)
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(PSInv) then
|
|
||||||
for k, v in pairs(items) do
|
|
||||||
for l in pairs(stashItems) do
|
|
||||||
if stashItems[l].name == k then
|
|
||||||
if (stashItems[l].amount - v) <= 0 then
|
|
||||||
debugPrint("^6Bridge^7: ^2None of this item left in stash ^3Stash^7", k, v)
|
|
||||||
stashItems[l] = nil
|
|
||||||
else
|
|
||||||
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..QBInv, k, v)
|
|
||||||
stashItems[l].amount -= v
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
debugPrint("^6Bridge^7: ^3saveStash^7: ^2Saving ^3QB^2 stash ^7'^6"..stashName.."^7'")
|
|
||||||
MySQL.Async.insert('INSERT INTO stashitems (stash, items) VALUES (:stash, :items) ON DUPLICATE KEY UPDATE items = :items', {
|
|
||||||
['stash'] = stashName,
|
|
||||||
['items'] = json.encode(stashItems)
|
|
||||||
})
|
|
||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
if QBInvNew then
|
if QBInvNew then
|
||||||
for k, v in pairs(items) do
|
for k, v in pairs(items) do
|
||||||
@@ -425,6 +430,27 @@ function stashRemoveItem(stashItems, stashName, items)
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
for k, v in pairs(items) do
|
||||||
|
for l in pairs(stashItems) do
|
||||||
|
if stashItems[l].name == k then
|
||||||
|
if (stashItems[l].amount - v) <= 0 then
|
||||||
|
debugPrint("^6Bridge^7: ^2None of this item left in stash ^3Stash^7", k, v)
|
||||||
|
stashItems[l] = nil
|
||||||
|
else
|
||||||
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..PSInv, k, v)
|
||||||
|
stashItems[l].amount -= v
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
debugPrint("^6Bridge^7: ^3saveStash^7: ^2Saving ^3QB^2 stash ^7'^6"..stashName.."^7'")
|
||||||
|
MySQL.Async.insert('INSERT INTO stashitems (stash, items) VALUES (:stash, :items) ON DUPLICATE KEY UPDATE items = :items', {
|
||||||
|
['stash'] = stashName,
|
||||||
|
['items'] = json.encode(stashItems)
|
||||||
|
})
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
elseif isStarted(RSGInv) then
|
||||||
for k, v in pairs(items) do
|
for k, v in pairs(items) do
|
||||||
exports[RSGInv]:RemoveItem(stashName[1], k, v, false, 'crafting')
|
exports[RSGInv]:RemoveItem(stashName[1], k, v, false, 'crafting')
|
||||||
@@ -490,3 +516,75 @@ function stashhasItem(stashItems, items, amount)
|
|||||||
|
|
||||||
return true, hasTable
|
return true, hasTable
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
--- Registers a stash with the active inventory system.
|
||||||
|
--- Supports either OXInv or QSInv.
|
||||||
|
---
|
||||||
|
--- @param name string Unique stash identifier.
|
||||||
|
--- @param label string Display name for the stash.
|
||||||
|
--- @param slots number|nil (Optional) Number of slots (default 50).
|
||||||
|
--- @param weight number|nil (Optional) Maximum weight (default 4000000).
|
||||||
|
--- @param owner string|nil (Optional) Owner identifier for personal stashes.
|
||||||
|
--- @param coords table|nil (Optional) Coordinates for the stash location.
|
||||||
|
--- @usage
|
||||||
|
--- ```lua
|
||||||
|
--- registerStash(
|
||||||
|
--- "playerStash",
|
||||||
|
--- "Player Stash",
|
||||||
|
--- 100,
|
||||||
|
--- 8000000,
|
||||||
|
--- "player123",
|
||||||
|
--- { x = 100.0, y = 200.0, z = 30.0 }
|
||||||
|
--- )
|
||||||
|
--- ```
|
||||||
|
function registerStash(name, label, slots, weight, owner, coords)
|
||||||
|
if isStarted(OXInv) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3OX ^2Stash^7:", name, label, owner or nil)
|
||||||
|
exports[OXInv]:RegisterStash(name, label, slots or 50, weight or 4000000, owner or nil)
|
||||||
|
|
||||||
|
elseif isStarted(QSInv) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3QS ^2Stash^7:", name, label)
|
||||||
|
exports[QSInv]:RegisterStash(name, label, slots or 50, weight or 4000000)
|
||||||
|
|
||||||
|
--elseif isStarted(CoreInv) then
|
||||||
|
-- debugPrint("^6Bridge^7: ^2Registering ^3CoreInv ^2Stash^7:", name, label)
|
||||||
|
-- exports[CoreInv]:openHolder(nil, name, 'stash', nil, nil, false, nil)
|
||||||
|
|
||||||
|
elseif isStarted(OrigenInv) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3OrigenInv ^2Stash^7:", name, label)
|
||||||
|
exports["origen_inventory"]:registerStash(name, label, slots or 50, weight or 4000000)
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3TgiannInv ^2Stash^7:", name, label)
|
||||||
|
exports[TgiannInv]:RegisterStash(name, label, slots or 50, weight or 4000000)
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if isServer() then
|
||||||
|
--- Registers an event to create an OX stash from the server.
|
||||||
|
--- When triggered, it calls registerStash with the provided parameters.
|
||||||
|
---
|
||||||
|
--- @event server:makeOXStash
|
||||||
|
--- @param name string Unique stash identifier.
|
||||||
|
--- @param label string Display name for the stash.
|
||||||
|
--- @param slots number|nil (Optional) Number of slots.
|
||||||
|
--- @param weight number|nil (Optional) Maximum weight.
|
||||||
|
--- @param owner string|nil (Optional) Owner identifier.
|
||||||
|
--- @param coords table|nil (Optional) Stash coordinates.
|
||||||
|
--- @usage
|
||||||
|
--- ```lua
|
||||||
|
--- TriggerEvent(getScript()..":server:makeOXStash", name, label, slots, weight, owner, coords, token)
|
||||||
|
--- ```
|
||||||
|
RegisterNetEvent(getScript()..":server:makeOXStash", function(name, label, slots, weight, owner, coords, token)
|
||||||
|
local src = source or nil
|
||||||
|
if src then
|
||||||
|
if not checkToken(src, token, "stash", name) then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
registerStash(name, label, slots, weight, owner, coords)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|||||||
@@ -42,74 +42,3 @@ function registerCommand(command, options)
|
|||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Registers a stash with the active inventory system.
|
|
||||||
--- Supports either OXInv or QSInv.
|
|
||||||
---
|
|
||||||
--- @param name string Unique stash identifier.
|
|
||||||
--- @param label string Display name for the stash.
|
|
||||||
--- @param slots number|nil (Optional) Number of slots (default 50).
|
|
||||||
--- @param weight number|nil (Optional) Maximum weight (default 4000000).
|
|
||||||
--- @param owner string|nil (Optional) Owner identifier for personal stashes.
|
|
||||||
--- @param coords table|nil (Optional) Coordinates for the stash location.
|
|
||||||
--- @usage
|
|
||||||
--- ```lua
|
|
||||||
--- registerStash(
|
|
||||||
--- "playerStash",
|
|
||||||
--- "Player Stash",
|
|
||||||
--- 100,
|
|
||||||
--- 8000000,
|
|
||||||
--- "player123",
|
|
||||||
--- { x = 100.0, y = 200.0, z = 30.0 }
|
|
||||||
--- )
|
|
||||||
--- ```
|
|
||||||
function registerStash(name, label, slots, weight, owner, coords)
|
|
||||||
if isStarted(OXInv) then
|
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3OX ^2Stash^7:", name, label, owner or nil)
|
|
||||||
exports[OXInv]:RegisterStash(name, label, slots or 50, weight or 4000000, owner or nil)
|
|
||||||
|
|
||||||
elseif isStarted(QSInv) then
|
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3QS ^2Stash^7:", name, label)
|
|
||||||
exports[QSInv]:RegisterStash(name, label, slots or 50, weight or 4000000)
|
|
||||||
|
|
||||||
--elseif isStarted(CoreInv) then
|
|
||||||
-- debugPrint("^6Bridge^7: ^2Registering ^3CoreInv ^2Stash^7:", name, label)
|
|
||||||
-- exports[CoreInv]:openHolder(nil, name, 'stash', nil, nil, false, nil)
|
|
||||||
|
|
||||||
elseif isStarted(OrigenInv) then
|
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3OrigenInv ^2Stash^7:", name, label)
|
|
||||||
exports["origen_inventory"]:registerStash(name, label, slots or 50, weight or 4000000)
|
|
||||||
|
|
||||||
elseif isStarted(TgiannInv) then
|
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3TgiannInv ^2Stash^7:", name, label)
|
|
||||||
exports[TgiannInv]:RegisterStash(name, label, slots or 50, weight or 4000000)
|
|
||||||
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if isServer() then
|
|
||||||
--- Registers an event to create an OX stash from the server.
|
|
||||||
--- When triggered, it calls registerStash with the provided parameters.
|
|
||||||
---
|
|
||||||
--- @event server:makeOXStash
|
|
||||||
--- @param name string Unique stash identifier.
|
|
||||||
--- @param label string Display name for the stash.
|
|
||||||
--- @param slots number|nil (Optional) Number of slots.
|
|
||||||
--- @param weight number|nil (Optional) Maximum weight.
|
|
||||||
--- @param owner string|nil (Optional) Owner identifier.
|
|
||||||
--- @param coords table|nil (Optional) Stash coordinates.
|
|
||||||
--- @usage
|
|
||||||
--- ```lua
|
|
||||||
--- TriggerEvent(getScript()..":server:makeOXStash", name, label, slots, weight, owner, coords, token)
|
|
||||||
--- ```
|
|
||||||
RegisterNetEvent(getScript()..":server:makeOXStash", function(name, label, slots, weight, owner, coords, token)
|
|
||||||
local src = source or nil
|
|
||||||
if src then
|
|
||||||
if not checkToken(src, token, "stash", name) then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
registerStash(name, label, slots, weight, owner, coords)
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|||||||
76
starter.lua
76
starter.lua
@@ -47,10 +47,10 @@ if Config and Config.System then
|
|||||||
end
|
end
|
||||||
|
|
||||||
Config.System.Menu = GetConvar("jim_menuScript", Config.System.Menu)
|
Config.System.Menu = GetConvar("jim_menuScript", Config.System.Menu)
|
||||||
Config.System.Notify = GetConvar("jim_notifyScript", Config.System.Notify)
|
Config.System.Notify = GetConvar("jim_notifyScript", Config.System.Notify or "gta")
|
||||||
Config.System.ProgressBar = GetConvar("jim_progressBarScript", Config.System.ProgressBar)
|
Config.System.ProgressBar = GetConvar("jim_progressBarScript", Config.System.ProgressBar or "gta")
|
||||||
Config.System.drawText = GetConvar("jim_drawTextScript", Config.System.drawText)
|
Config.System.drawText = GetConvar("jim_drawTextScript", Config.System.drawText or "gta")
|
||||||
Config.System.skillCheck = GetConvar("jim_skillCheckScript", Config.System.skillCheck)
|
Config.System.skillCheck = GetConvar("jim_skillCheckScript", Config.System.skillCheck or "gta")
|
||||||
|
|
||||||
if GetConvar("jim_dontUseTarget", "false") == "true" then
|
if GetConvar("jim_dontUseTarget", "false") == "true" then
|
||||||
Config.System.DontUseTarget = true
|
Config.System.DontUseTarget = true
|
||||||
@@ -58,23 +58,73 @@ if Config and Config.System then
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Testing loading the core files here instead of in fxmanifests
|
-- Testing loading the core files here instead of in fxmanifests
|
||||||
-- Forcefully loads the files and quietly, compared to fxmanifest complaining if they don't exist
|
-- Forcefully loads the files and quietly, compared to fxmanifest complaining if they don't exist when you don't need them all
|
||||||
-- This may be better button would require more refinement maybe
|
|
||||||
--[[
|
--[[
|
||||||
|
-- Shared framework file loader
|
||||||
for k, v in pairs({ -- This is a specific load order
|
for k, v in pairs({ -- This is a specific load order
|
||||||
[Exports.OXLibExport] = "init.lua",
|
[Exports.OXLibExport] = "init.lua",
|
||||||
[Exports.OXCoreExport] = "lib/init.lua",
|
[Exports.OXCoreExport] = "lib/init.lua",
|
||||||
[Exports.ESXExport] = "imports.lua",
|
[Exports.ESXExport] = "imports.lua",
|
||||||
[Exports.QBXExport] = "modules/playerdata.lua",
|
[Exports.QBXExport] = "modules/playerdata.lua",
|
||||||
}) do
|
}) do
|
||||||
if GetResourceState(k) == "started" then
|
local state = GetResourceState(k)
|
||||||
print("^5Loading^7: '"..k.."/"..v.."' ^2into ^7'"..GetCurrentResourceName().."' ...")
|
-- if the resource is started, load the file
|
||||||
local fileLoader = assert(load(LoadResourceFile(k, (v)), ('@@'..k..'/'..v)))
|
if state == "started" then
|
||||||
fileLoader()
|
if type(v) == "string" then
|
||||||
print("^2Success^7: ^2loaded ^1Core ^2file^7: ^3"..k.."^7/^3"..(v):gsub("/", "^7/^3"):gsub("%.lua", "^7.lua").."^7")
|
v = { v }
|
||||||
else
|
end
|
||||||
|
for _, file in pairs(v) do
|
||||||
|
--print("^5CoreLoader^7: '"..k.."/"..file.."' ^2into ^7'"..GetCurrentResourceName().."' ...")
|
||||||
|
local fileLoader = assert(load(LoadResourceFile(k, (file)), ('@@'..k..'/'..file)))
|
||||||
|
fileLoader()
|
||||||
|
print("^5CoreLoader^7: ^2loaded ^1Core ^2file^7: ^3"..k.."^7/^3"..(file):gsub("/", "^7/^3"):gsub("%.lua", "^7.lua").."^7")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- if script is in server, but not started warn the user
|
||||||
|
if state == "uninitialized" or state == "stopped" then
|
||||||
|
print("^5CoreLoader^7: ^3"..k.." ^1 found but it wasn't started^7. ^1Check your ^3server^7.^3cfg ^1load order^7")
|
||||||
|
end
|
||||||
|
|
||||||
|
-- debugging only, if the script is missing, warn the user
|
||||||
|
if state == "missing" then
|
||||||
if debugMode then
|
if debugMode then
|
||||||
print("^3Warning^7: ^3"..k.." ^2not found^7, ^2skipping")
|
print("^5CoreLoader^7: ^3"..k.." ^2not found^7, ^2skipping")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Client only file loader
|
||||||
|
if not IsDuplicityVersion() then
|
||||||
|
for k, v in pairs({ -- This is a specific load order
|
||||||
|
["PolyZone"] = { "client.lua", "BoxZone.lua", "EntityZone.lua", "CircleZone.lua", "ComboZone.lua" },
|
||||||
|
["warmenu"] = { "warmenu.lua", },
|
||||||
|
}) do
|
||||||
|
local state = GetResourceState(k)
|
||||||
|
-- if the resource is started, load the file
|
||||||
|
if state == "started" then
|
||||||
|
if type(v) == "string" then
|
||||||
|
v = { v }
|
||||||
|
end
|
||||||
|
for _, file in pairs(v) do
|
||||||
|
--print("^5CoreLoader^7: '"..k.."/"..file.."' ^2into ^7'"..GetCurrentResourceName().."' ...")
|
||||||
|
local fileLoader = assert(load(LoadResourceFile(k, (file)), ('@@'..k..'/'..file)))
|
||||||
|
fileLoader()
|
||||||
|
print("^5CoreLoader^7: ^2loaded ^1Core ^2file^7: ^3"..k.."^7/^3"..(file):gsub("/", "^7/^3"):gsub("%.lua", "^7.lua").."^7")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- if script is in server, but not started warn the user
|
||||||
|
if state == "uninitialized" or state == "stopped" then
|
||||||
|
print("^5CoreLoader^7: ^3"..k.." ^1 found but it wasn't started^7. ^1Check your ^3server^7.^3cfg ^1load order^7")
|
||||||
|
end
|
||||||
|
|
||||||
|
-- debugging only, if the script is missing, warn the user
|
||||||
|
if state == "missing" then
|
||||||
|
if debugMode then
|
||||||
|
print("^3Warning^7: ^3"..k.." ^2not found^7, ^2skipping")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
2.0.06
|
2.0.07
|
||||||
Reference in New Issue
Block a user