This commit is contained in:
Nordi98 2025-07-27 19:49:02 +02:00
commit 5d10288f7b
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}

View file

@ -48,3 +48,10 @@ local function GetSharedGangs()
return QBShared.Gangs
end
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
end
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

File diff suppressed because one or more lines are too long