forked from MacRichards/CarHudLights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
37 lines (28 loc) · 955 Bytes
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
--[[ /////////////////////////////////// ]]
--[[ ]]
--[[ Config ]]
--[[ ]]
--[[ /////////////////////////////////// ]]
Config = {}
-- * Config Options for Cars, Boats, and Planes
Config.Speedometer = true
Config.EngineDamage = true
Config.HeadLights = true
Config.IndiatorLights = true
Config.CruseControl = true
Config.LicensePlate = true
Config.Seatbelt = true
Config.UseKnots = true
Config.Heading = true
Config.LandingGear = true
Config.Pitch = true
Config.Roll = true
-- * Can be either mph or kph
Config.speedUnits = "mph"
-- * For a list of possible keys go to https://docs.fivem.net/docs/game-references/controls/
-- * Set to the same key as your cruse control or speed limiter script.
Config.ccKey = 182 -- L
-- * Key used to toggle your seatbelt
Config.seatBeltKey = 311 -- K
-- * KM/H (must be have decimal value)
Config.Speed = 100.0