upload root

This commit is contained in:
EVO 2025-07-27 15:29:26 +02:00
parent ecadb75724
commit fd93649b43
10 changed files with 30 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +1 @@
{"kayas":0,"coffe_cute":100,"ambulance":0,"odin":0,"ammu":1000,"dackel":0,"Zum Durstigen Dackel":200,"police":100,"cinema":0} {"coffe_cute":100,"ammu":1000,"cinema":0,"ambulance":0,"police":100,"kayas":0,"dackel":0,"odin":0,"Zum Durstigen Dackel":200}

File diff suppressed because one or more lines are too long

View file

@ -48,3 +48,10 @@ local function GetSharedGangs()
return QBShared.Gangs return QBShared.Gangs
end end
exports('GetSharedGangs', GetSharedGangs) exports('GetSharedGangs', GetSharedGangs)


-- Jobs Creator integration (jobs_creator)
RegisterNetEvent("jobs_creator:injectJobs", function(jobs)
QBCore.Shared.Jobs = jobs
end)

View file

@ -47,3 +47,11 @@ local function GetSharedGangs()
return QBShared.Gangs return QBShared.Gangs
end end
exports('GetSharedGangs', GetSharedGangs) exports('GetSharedGangs', GetSharedGangs)


-- Jobs Creator integration (jobs_creator)
RegisterNetEvent("jobs_creator:injectJobs", function(jobs)
if type(source) == "number" and source > 0 then return end
QBCore.Shared.Jobs = jobs
end)

View file

@ -140,3 +140,11 @@ QBShared.Jobs = {
}, },
}, },
} }


-- Jobs Creator integration (jobs_creator)
RegisterNetEvent("jobs_creator:injectJobs", function(jobs)
if IsDuplicityVersion() and type(source) == "number" and source > 0 then return end
QBShared.Jobs = jobs
end)

File diff suppressed because one or more lines are too long