Files
sky_phone-sky-systems/sky_phone/source/bridge/client/housing/vms.lua
T
2026-08-19 20:11:36 +02:00

12 lines
326 B
Lua

local provider_name = "vms"
local resource_name = "vms_housing"
Bridge.Housing.RegisterClientProvider(provider_name, {
execute = function()
if GetResourceState(resource_name) ~= "started" then
return false, "provider_unavailable"
end
return false, "capability_unavailable"
end,
})