Config settings

--[[
    ⚠️ Support available on my discord ⚠️
    https://discord.gg/kDjjUbWavx
]]

Config = {}
Config.Debug = true -- Set to true if you want to see debug messages
Config.VersionCheck = true -- Set to false if you don't want console notifications when update is available

Config.HintPosition = "left" -- Position of hint on player's screen
--[[
    Supported Positions:
        • top-left
        • left
        • bottom-left
        • top-right
        • right
        • bottom-right
]]

Config.DistanceUnit = 'km'
--[[
    Supported Units:
        • km
        • miles
]]

Config.DefaultColor = 'green' -- Default UI color
--[[
    Supported Colors:
        • purple
        • green
        • blue
        • orange
        • red
]]

Config.DefaultIcons = { -- https://fonts.google.com/icons?icon.set=Material+Icons Click on icon that you want to use and on the right in 'Web' tab should be a "Icon name"
    coords = 'place', -- Default icon for Hint with distance
    points = 'trending_up' -- Default icon for Hint with points
}

Config.ShouldHideOnPauseMenu = true -- Whether Hint should be hidden when player is on pause menu

Config.KeyToClose = 'G' -- https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/ Key that will be used to close/hide Hint description. ⚠️ IF YOU STARTED THIS SCRIPT AND THEN CHANGED THIS KEY YOU HAVE TO RESTART WHOLE SERVER ⚠️
Config.KeybindDescription = 'Hide Hint Description' -- This text will be shown in Settings -> Keybinds -> FiveM where players can rebind the key. Example: https://i.imgur.com/WiaVjeb.png
Config.ShowKeyToHideDescription = true -- Whether Hint close button should be visible next to Hint title (by default its this little "G" letter)

Last updated