Config

Settings

Config.Settings = {
    commandName = 'hud'
}
Name
Value
Description

commandName

'hud'

Command name for hud settings (/hud)

Config.Logo = {
    enabled = false,
    style = {
        position = 'absolute',
        top = '5px',
        right = '5px',
        height = '70px',
        width = '70px'
    }
}
Name
Value
Description

enabled

false

Enable/disable server logo (true or false)

style

{}

Logo style in css

Speedometer

Config.Speedometer = {
    unit = 'mph',
    radarInCar = true,
    seatbelt = {
        enabled = true,

        keyMappingName = 'seatbelt',
        commandName = 'seatbelt',
        label = 'Seatbelt',
        key = 'K',

        soundVolume = 0.5,

        preventDamage = true,
        preventDamageTime = 2000,
        preventExitTime = 50
    },
    fuel = {
        enabled = true
    }
}
Name
Value
Description

unit

'mph'

Default speedometer unit ('mph' or 'kmh')

radarInCar

true

Enable/disable radar in car (true or false), if false then radar will be always visible

seatbelt.enabled

true

Enable/disable seatbelts in car (true or false)

seatbelt.keyMappingName

'seatbelt'

Key mapping name for seatbelt, don't change it if u don't know how it work

seatbelt.commandName

'seatbelt'

Default command name for seatbelt (it's key mapping)

seatbelt.label

'Seatbelt'

Default command label

seatbelt.key

'K'

Default key for seatbelt

seatbelt.soundVolume

0.5

Default volume of seatbelt sound

seatbelt.preventDamage

true

Eanble/disable damage after falling out of the car if we are not fastened with seat belts (true or false)

seatbelt.preventDamageTime

2000

The time during which a player is invincible

fuel.enabled

true

Enable/disable fuel status in speedometer (true or false)

Notifications

Config.Notifications = {
    duration = 4000,
    defaultTitle = 'Notification',
    defaultIcon = 'bell'
}
Name
Value
Description

duration

4000

Notification duration time in miliseconds

defaultTitle

'Notification'

Default notification title (editable in export)

defaultIcon

'bell'

Default notification icon (editable in export)

Progress bar

Config.Progress = {
    keyMappingName = 'cancel_progress',
    commandName = 'cancel_progress',
    label = 'Cancel progress',
    key = 'X'
}
Name
Value
Description

keyMappingName

'cancel_progress'

Key mapping name for cancel progress, don't change it if u don't know how it work

commandName

'cancel_progress'

Default command name for cancel progress (it's key mapping)

label

'Cancel progress'

Default command label

key

'X'

Default key for cancel progress

Last updated