47 lines
1.4 KiB
Lua
47 lines
1.4 KiB
Lua
Config = {}
|
|
|
|
Config.TCon = false --- Enable/Disable Traction Control
|
|
|
|
Config.CCon = true --- Enable/Disable Cruise Control
|
|
|
|
Config.TCkey = 20 --- Traction Control Key (Default Z) // https://docs.fivem.net/game-references/controls/
|
|
|
|
Config.CCkey = 246 --- Cruise Control Key (Default Y) // https://docs.fivem.net/game-references/controls/
|
|
|
|
Config.Maxspeed = 68.0 --- In meters per second 34 = 75mph
|
|
|
|
Config.Minspeed = 5.0 --- In meters per second 0.1 = 0.2mph
|
|
|
|
Config.action = 0.2 --- How much the TC wil try to stop you sliding Lower = more help
|
|
|
|
Config.OnScreenTextCC = true --- Enable/Disable On-Screen text
|
|
|
|
Config.OnScreendisplayCC = false --- Enable/Disable On-Screen display/colours
|
|
|
|
Config.SimpleCCimmage = false --- a small symbol
|
|
|
|
Config.OnScreenTextTC = false --- Enable/Disable On-Screen text
|
|
|
|
Config.OnScreendisplayTC = false --- Enable/Disable On-Screen display/colours
|
|
|
|
Config.SimpleTCimmage = false --- a small symbol
|
|
|
|
Config.Watermark = false --- Enable/Disable Watermark
|
|
|
|
Config.Watermark2 = false --- Enable/Disable Watermark
|
|
|
|
Config.enableTCtoggle = false
|
|
|
|
UITC = {
|
|
|
|
x = 0.20 , -- Traction Control Screen Coords 0.0-1.0 left to right
|
|
y = 0.720 , -- Traction Control Screen Coords 0.0-1.0 = top to bottom
|
|
|
|
}
|
|
UI = {
|
|
|
|
x = 0.015 , -- Cruise Control Screen Coords 0.0-1.0 left to right
|
|
y = 0.84 , -- Cruise Control Screen Coords 0.0-1.0 = top to bottom
|
|
|
|
}
|