đī¸Config
Config = {}
---------------
-- Utility
---------------
Config.CoreName = "qb-core"
Config.QBTarget = "qb-target"
Config.QBMenu = "qb-menu"
function Notify(msg, type)
if type == "primary" then
QBCore.Functions.Notify(msg, "primary")
end
if type == "success" then
QBCore.Functions.Notify(msg, "success")
end
if type == "error" then
QBCore.Functions.Notify(msg, "error")
end
end
Last updated