Epsilon HUD - Configuration
All settings are configured in the config.lua file. Below you will find a detailed description of each setting.
General Settings
config.lua
Config = {}
Config.Framework = 'esx' -- 'esx' or 'qbcore'
Config.DefaultTheme = 'dark' -- 'dark' or 'light'
Config.SpeedUnit = 'kmh' -- 'kmh' or 'mph'
Config.MinimapShape = 'circle' -- 'circle' or 'square'
Config.ShowStreetName = true -- Street name display
Config.ShowCompass = true -- Compass display
Settings Table
| Setting | Type | Default | Description |
|---|---|---|---|
Config.Framework | string | 'esx' | Framework to use |
Config.DefaultTheme | string | 'dark' | Default theme |
Config.SpeedUnit | string | 'kmh' | Speed unit |
Config.MinimapShape | string | 'circle' | Minimap shape |
Config.ShowStreetName | boolean | true | Show/hide street name |
Config.ShowCompass | boolean | true | Show/hide compass |
Bar Settings
You can configure the visibility and color of each bar:
config.lua
Config.Bars = {
health = { show = true, color = '#3fb950' },
armor = { show = true, color = '#58a6ff' },
hunger = { show = true, color = '#d29922' },
thirst = { show = true, color = '#58a6ff' },
stress = { show = true, color = '#f85149' },
oxygen = { show = true, color = '#79c0ff' },
}
Vehicle HUD Settings
config.lua
Config.VehicleHUD = {
showSpeed = true,
showFuel = true,
showDamage = true,
showSeatbelt = true,
fuelScript = 'LegacyFuel' -- Fuel script name
}
Warning: Change the fuelScript value according to the resource name of the fuel script you are using. For example, ox_fuel, LegacyFuel, etc.