45 lines
853 B
Lua
45 lines
853 B
Lua
Config = {}
|
|
|
|
-- VEHICLES THIS SCRIPT WILL WORK FOR
|
|
Config.AllowedVehicles = {
|
|
"chp161fpiu",
|
|
"chp161fpiusmpv",
|
|
"chp161fpiu2",
|
|
"chp161fpiuk9",
|
|
"chp15tahoe",
|
|
"chp19tahoe",
|
|
"chp20tahoe",
|
|
"chp15tahoek9",
|
|
"chp19tahoek9",
|
|
"chp202tahoek9"
|
|
}
|
|
|
|
-- 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
|