Scripts/resources/[qb]/[qb_jobs]/kloud-farmjob/shared/checks.lua

13 lines
541 B
Lua
Raw Normal View History

2024-12-29 20:06:22 +00:00
CreateThread(function()
Wait(1000)
if GetResourceState("ox_target") ~= "started" and GetResourceState("qb-target") ~= "started" then
-- print("^1No targeting resource found. Start the targeting resource before this script or you might be using an unsupported one.^0")
end
if GetResourceState("es_extended") ~= "started" and GetResourceState("qb-core") ~= "started" and GetResourceState("qbx-core") ~= "started" then
-- print("^1No framework found.^0")
end
collectgarbage("collect")
end)