Main/resources/[carscripts]/community_bridge/modules/housing/esx_property/server.lua

15 lines
429 B
Lua
Raw Normal View History

2025-08-06 16:37:06 +02:00
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