1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-09 19:41:05 +02:00
parent 30bf7c8604
commit 8dbe79a29d
135 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,18 @@
local tgiann_clothing = GetResourceState("tgiann-clothing") ~= "missing"
local rcore_clothing = GetResourceState("rcore_clothing") ~= "missing"
tgiCore.OpenClothingShop = function()
--local invokingResource = GetInvokingResource()
if tgiann_clothing then
exports["tgiann-clothing"]:openMenu({
allowedMenus = { [0] = false, [1] = true, [2] = false, [3] = false },
isBerberMenu = false,
})
elseif rcore_clothing then
TriggerEvent('rcore_clothing:openShop', "binco")
elseif config.framework == "qb" then
TriggerEvent("qb-clothing:client:openOutfitMenu")
elseif confg.framework == "esx" then
-- TODO: Implement ESX clothing shop
end
end