config.lua
Full View
Config = {}
-- Framework
Config.Framework = 'esx' -- vagy 'qbcore'
-- Name tag settings
Config.VerticalOffset = 0.05
Config.TextScale = 0.35
Config.DrawDistance = 5.0
-- Badge item name
Config.BadgeItem = 'idbadge'
-- Badge clothing configuration
Config.BadgeClothing = {
Male = {
componentId = 7, -- Component slot (chain slot)
drawable = 127, -- Clothing drawable ID
texture = 0 -- Texture index
},
Female = {
componentId = 7, -- Component slot (chain slot)
drawable = 97, -- Clothing drawable ID
texture = 0 -- Texture index
}
}
-- Jobs and unique badge icon
Config.AllowedJobs = {
police = {icon = "🛡️"},
ambulance = {icon = "⚕️"},
mechanic = {icon = "🔧"}
}
Last updated