rk-shud
A Minimal hud that supports ESX, QBOX, QB-Core and OxCore.
Installation
Install Dependencies
es_extended, qb-core, qbx_core, ox_core (If using a framework)
Configuration
---@class config
---@field framework string
---@field seatbelt string
---@field commands Commands
---@class Commands
---@field hide string
---@field show string
---@type config
config = {
---@type "esx" | "ox" | "qb" | "qbx" | "standalone" Supported Frameworks: esx, ox, qb, qbx, standalone
framework = 'esx',
---@type "default" | "esx" | "qbx" | "qb" Options: 'default' (built-in logic), 'esx' (esx_cruisecontrol), 'qbx' (qbx_seatbelt), or 'qb' (qb-smallresources)
seatbelt = 'default',
---@type Commands
commands = {
hide = 'hidehud',
show = 'showhud',
}
}
Last updated