πŸ“ƒCONFIGURATION FILE

Config = {}

Config.Locale = 'en'
Config.VersionCheck = false -- Check for updates on startup (true/false)

-- Keybinds
Config.ActivationKey = 0 -- V (See https://docs.fivem.net/docs/game-references/controls/)
Config.HoldTime = 1000 -- Time in ms to hold the key to activate

-- Movement Settings
Config.MoveSpeed = 0.1 -- Default movement speed
Config.FastMult = 2.0 -- Multiplier when holding Shift
Config.SlowMult = 0.1 -- Multiplier when holding Ctrl
Config.Smoothness = 0.1 -- Lerp factor for movement (0.01 - 1.0). Lower is smoother.

-- Camera Limits & Visuals
Config.MaxDistance = 13.0 -- Maximum distance from player before camera stops
Config.BlurStartDist = 9.0 -- Distance at which screen starts to blur/fade

-- FOV / Zoom Settings
Config.Fov = {
    Default = 50.0,
    Min = 5.0,
    Max = 120.0,
    Speed = 2.0 -- FOV change per scroll
}

-- Keys mapping (using control indices)
Config.Keys = {
    Forward = 32, -- W
    Backward = 33, -- S
    Left = 34, -- A
    Right = 35, -- D
    Up = 44, -- Q
    Down = 38, -- E
    Fast = 21, -- Shift
    Slow = 36, -- Ctrl
    RollLeft = 23, -- F
    RollRight = 45, -- R
    Exit = 177, -- Backspace
    Toggle = 0 -- V
}

-- Portrait Mode (Depth of Field)
Config.PortraitMode = {
    Near = 2.0, -- Distance where objects start to blur (near)
    Far = 5.0, -- Distance where objects start to blur (far)
    Strength = 1.0 -- Blur intensity
}

Last updated