housing und dj

This commit is contained in:
Nordi98 2025-06-09 23:54:46 +02:00
parent 112c7b1761
commit 10a5d168d4
731 changed files with 506993 additions and 0 deletions

View file

@ -0,0 +1,15 @@
local function exportHandler(exportName, func)
AddEventHandler(('__cfx_export_qb-houses_%s'):format(exportName), function(setCB)
if not warned then
Warning('Please update your exports to qs-housing. Do not use qb-houses exports anymore.')
Warning('Please update your exports to qs-housing. Do not use qb-houses exports anymore.')
Warning('Please update your exports to qs-housing. Do not use qb-houses exports anymore.')
warned = true
end
setCB(func)
end)
end
exportHandler('hasKey', function(identifier, cid, house)
return CheckHasKey(identifier, cid, house)
end)