Exports

Here are all the exports from the script that you can integrate into your own scripts

Indicator

Returns indicator data and functions

local indicator = exports.fzd_hud.indicator({
    icon = "burger", -- any icon from https://fontawesome.com/icons
    color = "orange", -- any color from https://mantine.dev/theming/colors/
    value = 100, -- default value
    position = 1 -- positioning within the hud indicators
})

Indicator Functions

indicator.update(param, newData)

-- Pararms
-- icon, color, value, position

-- New Data
-- icon - any icon from https://fontawesome.com/icons
-- color - any color from https://mantine.dev/theming/colors/
-- value - number from 0 - 100
-- position - number

Last updated