mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 10:01:28 +00:00
8 lines
162 B
Lua
8 lines
162 B
Lua
GetJobs = function()
|
|
local jobs = {}
|
|
while next(jobs) == nil do
|
|
Citizen.Wait(250)
|
|
jobs = exports['es_extended']:getSharedObject().Jobs
|
|
end
|
|
return jobs
|
|
end |