Features

Seatbelt

Config.Seatbelt = {
    Enable = true,
    Key = "L",
    BlackListClasses = {},
    PreventActions = true,
    Warning = {
        Enable = true,
        MinimumSpeed = 15,
        Cooldown = 20000
    },
    ToggleNotification = false,
    Sounds = {
        Warning = "tesla.ogg",
        Buckle = "buckle.ogg",
        Unbuckle = "unbuckle.ogg"
    }
}

Fully built in seatbelt which is fully customizable.

Speedlimiter

Config.Speedlimit = {
    Enable = true,
    Command = "speedlimit",
    Key = "c" -- set nil to disable
}

Speedlimiter for vehicles.

CarControl

Config.CarControl = {
    Enable = true,
    Command = "carcontrol",
    Key = "O"
}

CarControl menu, for controlling vehicle seats, windows and doors.

StressSystem

Config.Stress = {
    Enable = true,
    GainOnShooting = true,
    RelieveTimeout = 1000, -- How much it should pass from last stress gained to start relieve ? (in ms)
    Effects = {
        Blur = { -- Screne blur
            Enable = true,
            Min = 20, -- Minimum stress for effect
            Max = 100, -- Maximum stress for effect
            Duration = 5000, --ms
            Timeout = 10000, --ms
        },
        Shake = { -- Screen shake
            Enable = true,
            Min = 20, -- Minimum stress for effect
            Max = 100, -- Maximum stress for effect
            Timeout = 10000, --ms
        },
        Fall = { -- Fell down
            Enable = true,
            Min = 40, -- Minimum stress for effect
            Max = 100, -- Maximum stress for effect
            Timeout = 10000, --ms
        },
    }
}

Highly customizable builtin stress system.

Elements

Fully customizable HUD elements read more on this page.

Last updated