Files
sky_phone-sky-systems/sky_phone/source/bridge/server/framework.lua
T
2026-08-05 20:14:47 +02:00

22 lines
728 B
Lua

local configured_framework = Config.Bridge.Framework
if configured_framework == "auto" then
if GetResourceState("es_extended") == "started" then
configured_framework = "esx"
elseif GetResourceState("qbx_core") == "started" then
configured_framework = "qbox"
elseif GetResourceState("qb-core") == "started" then
configured_framework = "qb"
end
end
if configured_framework ~= "esx" and configured_framework ~= "qbox" and configured_framework ~= "qb" then
error(("[sky_phone] Unsupported or unavailable framework '%s'."):format(tostring(configured_framework)))
end
Bridge.Framework.Name = configured_framework
function Bridge.Framework.GetName()
return Bridge.Framework.Name
end