This commit is contained in:
2026-07-07 21:08:52 +02:00
commit 4c20cfc716
2613 changed files with 318021 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
Config = {
Locale = GetConvar('esx:locale', 'en'),
HudResource = 'esx_hud',
Cruise = {
Enable = true,
Key = "CAPITAL",
Export = function (state)
exports[Config.HudResource]:CruiseControlState(state)
end,
},
Seatbelt = {
Enable = true,
Key = "B",
EjectCheckSpeed = 45, -- MPH
RagdollTime = 1, -- MS
Export = function (state)
exports[Config.HudResource]:SeatbeltState(state)
end
}
}