tweak: check for inventory

This commit is contained in:
Andyyy7666
2022-12-02 21:49:18 +01:00
parent 211c2531cc
commit 12b30c30d6
3 changed files with 9 additions and 8 deletions

View File

@@ -25,14 +25,10 @@ CreateThread(function()
end
end)
AddEventHandler("onResourceStart", function(resourceName)
Wait(3000)
if resourceName ~= "ox_inventory" then return end
isResourceStarted("ox_inventory", function(started)
if not started then return end
SetConvarReplicated("inventory:framework", "nd")
end)
if GetResourceState("ox_inventory") == "started" then
SetConvarReplicated("inventory:framework", "nd")
end
for _, roleid in pairs(config.adminRoles) do
ExecuteCommand("add_principal identifier.discord:" .. roleid .. " group.admin")

View File

@@ -18,7 +18,12 @@ end)
function isResourceStarted(resourceName, cb)
local started = GetResourceState(resourceName) == "started"
startedResources[resourceName] = started
if cb then
callbacks[resourceName] = cb
cb(started)
end
return started
end