This commit is contained in:
Nordi98 2025-07-20 22:12:41 +02:00
parent 702bab121c
commit 9aa690dfc4
37 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,36 @@
if GetResourceState('qbx_core') ~= 'started' then return end
Core.Info.Framework = 'QBox'
local QBox = exports.qbx_core
Core.Framework = {}
function Core.Framework.Notify(message, type)
local resource = Cfg.Notification or 'default'
if resource == 'default' then
QBox:Notify(message, type)
elseif resource == 'ox' then
lib.notify({ description = message, type = type, position = 'top' })
elseif resource == 'custom' then
-- insert your notification export here
end
end
function Core.Framework.GetPlayerName()
return QBX.PlayerData.charinfo.firstname, QBX.PlayerData.charinfo.lastname
end
function Core.Framework.ToggleOutfit(wear, outfits)
if wear then
local gender = QBX.PlayerData.charinfo.gender
local outfit = gender == 1 and outfits.Female or outfits.Male
if not outfit then return end
TriggerEvent('qb-clothing:client:loadOutfit', { outfitData = outfit })
else
TriggerServerEvent('qb-clothing:loadPlayerSkin')
end
end
function Core.Framework.GetPlayerMetadata(meta)
return QBX.PlayerData.metadata[meta]
end