Files
Elite-Gaming-FiveM/resources/chplightscript/config.lua
T
2025-12-04 19:34:08 -08:00

47 lines
889 B
Lua

Config = {}
-- VEHICLES THIS SCRIPT WILL WORK FOR
Config.AllowedVehicles = {
"chp16fpiu",
"chp16fpiusmpv",
"chp16fpiu2",
"chp16fpiuk9",
"chp15tahoe",
"chp19tahoe",
"chp20tahoe",
"chp15tahoek9",
"chp19tahoek9",
"chp20tahoek9",
"chp23tahoe"
"chp23tahoek9"
}
-- EXTRAS MAPPED TO FEATURES
Config.Extras = {
-- Button 1 → Wail Pattern
Wail = {1, 2, 3, 4, 5, 12}, -- example: extras 1 + 3
-- Button 2 → Yelp Pattern
Yelp = {1, 7, 12}, -- example: extras 2 + 4
-- Button 4 → Stage 2 lighting
Stage2 = {6},
-- Left Arrow key → Left TA pattern
TA_Left = {11},
-- Park Mode (front only)
Park = {1, 5, 8, 9, 10}
}
-- KEYBINDS =========================
Config.Keys = {
Wail = 157, -- 1
Yelp = 158, -- 2
Stage2 = 164, -- 4
TA_Left = 174 -- LEFT ARROW
}
return Config