Main/resources/[carscripts]/community_bridge/modules/housing/esx_property/server.lua
2025-08-06 16:37:06 +02:00

15 lines
No EOL
429 B
Lua

if GetResourceState('esx_property') == 'missing' then return end
Housing = Housing or {}
RegisterNetEvent('esx_property:enter', function(insideId)
local src = source
TriggerEvent('community_bridge:Server:_OnPlayerInside', src, insideId)
end)
RegisterNetEvent('esx_property:leave', function(insideId)
local src = source
TriggerEvent('community_bridge:Server:_OnPlayerInside', src, insideId)
end)
return Housing