1188 lines
28 KiB
Lua
1188 lines
28 KiB
Lua
-- Ultimate Lighting Controller by Dawnstar FiveM
|
|
-- Written by Dawnstar
|
|
-- Documentation: https://docs.dwnstr.com/ulc/overview
|
|
-- For support: https://discord.gg/dwnstr-fivem
|
|
|
|
-- Most of these can be left at their default values.
|
|
-- View documentation for details on each value
|
|
Config = {
|
|
-- whether to enable control of lights on/off state using Q key
|
|
-- disabled by default to allow other scripts to control lights such as Luxart
|
|
-- make sure to disable light controls in other scripts if you enable this
|
|
controlLights = false,
|
|
|
|
-- HUD SETTINGS
|
|
-- global toggle for UI (affects all clients)
|
|
hideHud = false,
|
|
-- whether to use KPH instead of MPH
|
|
useKPH = false,
|
|
|
|
-- Park Pattern Settings;
|
|
ParkSettings = {
|
|
-- extras will toggle below this speed
|
|
speedThreshold = 1,
|
|
-- time between checks in seconds
|
|
-- should not be any lower than .5 seconds
|
|
delay = 0.5,
|
|
-- distance at which to check for other vehicles to sync patterns with
|
|
syncDistance = 32,
|
|
-- seconds before a single client triggers sync again
|
|
syncCooldown = 4,
|
|
},
|
|
|
|
-- Steady Burn Config;
|
|
-- changes settings for extras that are enabled at night, or enabled all the time.
|
|
SteadyBurnSettings = {
|
|
-- hour effect starts (extras are enabled)
|
|
nightStartHour = 18,
|
|
-- hour effect ends (extras are disabled)
|
|
nightEndHour = 6,
|
|
},
|
|
|
|
-- Brake Extras/Patterns Config;
|
|
-- temporarily empty as of v1.3.0
|
|
BrakeSettings = {},
|
|
|
|
-- Reverse Extras/Patterns Config;
|
|
-- introduced in v1.8.0
|
|
ReverseSettings = {
|
|
-- these options control the expiration of the reverse extras
|
|
-- if enabled, reverse extras will turn off after a random time between min and max
|
|
-- this is to simulate more realistic behavior where the vehicle would shifted out of reverse
|
|
-- after being stopped for some time
|
|
useRandomExpiration = true,
|
|
-- minimum time in seconds extras will stay on after stopping
|
|
minExpiration = 3,
|
|
-- maximum time in seconds extras will stay on after stopping
|
|
maxExpiration = 8,
|
|
},
|
|
|
|
-- Import confiurations here
|
|
-- Add the resource names of vehicle resources that include a ulc.lua config file
|
|
ExternalVehResources = {
|
|
-- ex. "my-police-vehicle",
|
|
"615",
|
|
"ccso1",
|
|
"24sub",
|
|
"20slickfpiu3",
|
|
"20legacyfpiu3",
|
|
"24ramambo",
|
|
"704",
|
|
"640",
|
|
"128",
|
|
"258charger",
|
|
"275charger",
|
|
"296charger",
|
|
"351charger",
|
|
"352charger",
|
|
"554charger",
|
|
"643charger",
|
|
"689charger",
|
|
"751charger",
|
|
"767charger",
|
|
"891charger",
|
|
"940charger",
|
|
"gu1",
|
|
"gu2",
|
|
"gu3",
|
|
"gu4",
|
|
"k9_18tahoe",
|
|
"k9_durango",
|
|
"k9_f150",
|
|
"k9_ff250",
|
|
"k9_fpiu1",
|
|
"k9_fpiu2",
|
|
"k9_fpiu3",
|
|
"lcso_2016",
|
|
"lcso_2020",
|
|
"lscso1",
|
|
"lscso2",
|
|
"lscso3",
|
|
"lscso3k9",
|
|
"lscso4",
|
|
"lscso5",
|
|
"lscso6",
|
|
"lscso6k9",
|
|
"lscso7",
|
|
"lscso8",
|
|
"lscso9",
|
|
"lscso10",
|
|
"lscso11",
|
|
"lscso12",
|
|
"lscso13",
|
|
"sok91",
|
|
"sok92",
|
|
"sok93",
|
|
"sok94",
|
|
"sok95",
|
|
"sok96",
|
|
"so1",
|
|
"so2",
|
|
"so3",
|
|
"so4",
|
|
"so5",
|
|
"so6",
|
|
"so7",
|
|
"so8",
|
|
"so9",
|
|
"so10",
|
|
"so11",
|
|
"so12",
|
|
"st_charger1",
|
|
"tpd_2020",
|
|
"24sodur_ht",
|
|
"montereyparkpd25dura_180",
|
|
"sbcsd21durango",
|
|
"18charg",
|
|
"21ppv3",
|
|
"21ppvHCSO",
|
|
"23f150",
|
|
"23hoe",
|
|
"25legacyrango1",
|
|
"233ppv",
|
|
"BCSO21ppv",
|
|
"fs23hoe",
|
|
"leg21tahoeht_rb",
|
|
"MPD21ppv",
|
|
"sos23hoe",
|
|
"sbcsdcharger",
|
|
"sbcsdcharger2",
|
|
"24valor20utility4",
|
|
"24valor20utility20",
|
|
"24valor20utility20sl",
|
|
"24valor2500",
|
|
"24valor25002",
|
|
"24valor25003",
|
|
"24valor25004",
|
|
"24valor250020sl",
|
|
"24valor25002",
|
|
"24valor250020",
|
|
"24valor1500",
|
|
"24valor15003",
|
|
"24valor15004",
|
|
"24valor150020sl",
|
|
"24valor15002",
|
|
"24valor150020",
|
|
"24valor150020sl",
|
|
"22silv2visor",
|
|
"22silv2",
|
|
"firef250",
|
|
"fd_drone",
|
|
"22expdrbb",
|
|
"22expdr",
|
|
"202346gmc",
|
|
"23gmc2",
|
|
"23gmc2visor",
|
|
"23ff1150",
|
|
"23gmc2",
|
|
"22silv2visor",
|
|
"23gmc2visor",
|
|
"22silv2",
|
|
"22sierralib",
|
|
"18charg",
|
|
"21ppv3",
|
|
"21ppvHCSO",
|
|
"23f150",
|
|
"23hoe",
|
|
"25legacyrango1",
|
|
"233ppv",
|
|
"BCSO21ppv",
|
|
"fs23hoe",
|
|
"leg21tahoeht_rb",
|
|
"MPD21ppv",
|
|
"sos23hoe",
|
|
"sbcsdcharger",
|
|
"sbcsdcharger2",
|
|
"23ff1150",
|
|
"atltahoe",
|
|
"leg20fpiurb",
|
|
"mpowercharg1",
|
|
"mpowercharg2",
|
|
"23f150pr2",
|
|
"23f150pr",
|
|
"20sosfpiu1",
|
|
"20slickfpiu3",
|
|
"21silvst",
|
|
"25fpiupov",
|
|
"spec25silvbb",
|
|
"spec25silvrb",
|
|
"222challenger",
|
|
"270challenger",
|
|
"646challenger",
|
|
"716challenger",
|
|
"979challenger",
|
|
"23ff1150",
|
|
"960charger",
|
|
"704durango",
|
|
"146charger",
|
|
"122charger",
|
|
"2010cvpipov",
|
|
"7644camaro",
|
|
"843tahoe",
|
|
"438camaro",
|
|
"104charger",
|
|
"4003cpd",
|
|
"1830",
|
|
"1822",
|
|
"1806charger",
|
|
"878truck",
|
|
"975tahoe",
|
|
"gpd7",
|
|
"lasd25fpiu",
|
|
"gpdchief1",
|
|
"st23tahoe",
|
|
"23gmcleoslick",
|
|
"23gmcleo",
|
|
"24rampumper",
|
|
"23sierrafire",
|
|
"24rampumper",
|
|
"e350vanb",
|
|
"ccso4",
|
|
"e450ambo",
|
|
"751",
|
|
"aspa22",
|
|
"7738",
|
|
"Polmrambb23",
|
|
"psp20fpiu2",
|
|
"chp18charger",
|
|
"sahp18tahoe",
|
|
"188tahoe",
|
|
"uhp24tahoe",
|
|
"23sdjfpiu",
|
|
"fhp1",
|
|
"dsp19tahoe",
|
|
"nhsp606",
|
|
"903um",
|
|
"psp16fpiulib2",
|
|
"chp20fpiup",
|
|
"psp16fpiu",
|
|
"chp23charg",
|
|
"188tahoe",
|
|
"vpd3",
|
|
"188tahoe",
|
|
"23sdjfpiu",
|
|
"23hoe",
|
|
"23hoeb",
|
|
"Specfpui2016",
|
|
"20fpiu20",
|
|
"21rangostb",
|
|
"21rangost",
|
|
"18charger",
|
|
"18chargerb",
|
|
"2020charger",
|
|
"2020chargerb",
|
|
"hard23charger",
|
|
"hard23chargerb",
|
|
"slick20durango",
|
|
"slick20durangob",
|
|
"slick23charger",
|
|
"slick23chargerb",
|
|
"slick20fpiu",
|
|
"slick20fpiub",
|
|
"slick21chargb",
|
|
"slick21charg",
|
|
"uc_charger",
|
|
"uc_chargerb",
|
|
"slick23tahoe",
|
|
"slick23tahoeb",
|
|
"19corvette",
|
|
"19corvetteb",
|
|
"slick25durango",
|
|
"slick25durangob",
|
|
"uc23suburban",
|
|
"uc23suburbanb",
|
|
"08hybridcvpi1",
|
|
"08hybridcvpi2",
|
|
"08lapdcvpi1",
|
|
"08lapdcvpi2",
|
|
"08lapdcvpighost",
|
|
"08lapdcvpiharbor",
|
|
"08lapdcvpisecsd",
|
|
"08lapdsap",
|
|
"13lasdfpiu",
|
|
"13lasdfpiu2",
|
|
"13lasdfpiua",
|
|
"13lasdfpiuseb",
|
|
"dualpurpose1",
|
|
"dualpurpose2",
|
|
"dualpurpose3",
|
|
"hybridfpis",
|
|
"lacpvic",
|
|
"lapd13fpiuv",
|
|
"lapd14charger",
|
|
"lapd14chargertd",
|
|
"lapd16fpiu",
|
|
"lapd16fpiu2",
|
|
"lapd16fpiusecsd",
|
|
"lapd16fpiutraffic",
|
|
"lapd16fpiutraffic2",
|
|
"lapd20chrgra",
|
|
"lapd20sl",
|
|
"lapd20unm1",
|
|
"lapdalpr20",
|
|
"lapdfpis",
|
|
"lapdfpis2",
|
|
"lapdfpiua",
|
|
"lasd05cvpi",
|
|
"lasd06cvpi",
|
|
"lasd06cvpicarson",
|
|
"lasd06cvpisd7100",
|
|
"lasd06m",
|
|
"lasd06u",
|
|
"lasd08cvpi",
|
|
"lasd08cvpilomita",
|
|
"lasd08cvpitransit",
|
|
"lasd15k9",
|
|
"lasd15tahoe",
|
|
"lasd15tunm",
|
|
"lasd16asap",
|
|
"lasd20fs",
|
|
"lasd20k9",
|
|
"lasd20tunm",
|
|
"lasdchrg14",
|
|
"lasdcrownvic",
|
|
"lasdlithium",
|
|
"lasdparamount",
|
|
"lasdsd7100",
|
|
"lasdvicslicktop",
|
|
"metro16fpiu",
|
|
"metro16fpiu2",
|
|
"metro16fpiu3",
|
|
"metrocharger",
|
|
"s650",
|
|
"ht23legacyf150",
|
|
"lb18mustang",
|
|
"11lapdvic",
|
|
"11lapdvic2",
|
|
"13lapdexp",
|
|
"13lapdfpis",
|
|
"13lapdfpis2",
|
|
"14lapdchg",
|
|
"16lapdexp",
|
|
"16lapdexpk9",
|
|
"20lapdexp",
|
|
"20lapdexp2",
|
|
"20lapdexp3",
|
|
"20lapdexpk9",
|
|
"lasdchg",
|
|
"lasdexp",
|
|
"lasdexp2",
|
|
"lasdfpiu",
|
|
"lasdfpiu2",
|
|
"lasdfpiu3",
|
|
"lasdfpiu4",
|
|
"lasdtahoe",
|
|
"lasdtahoe2",
|
|
"lasdtahoek9",
|
|
"lasd14ta",
|
|
"lasd14tb",
|
|
"lasd14tc",
|
|
"lasd14td",
|
|
"lasd14tseb",
|
|
"lasd14tseb2",
|
|
"lasd14tv",
|
|
"lasd15tahoe",
|
|
"lasd15tahoeb",
|
|
"lasd15k9",
|
|
"lasd15k9b",
|
|
"lasd20tahoe",
|
|
"lasd20tfs",
|
|
"lasd20k9",
|
|
"lasd23tahoe",
|
|
"lasd23k9t",
|
|
"lasd23k9t",
|
|
"lasd16asap",
|
|
"lasd16asapb",
|
|
"lasd16asapc",
|
|
"lasd16asapd",
|
|
"lasd16fpiu",
|
|
"lasd16fpiub",
|
|
"lasd16rfr",
|
|
"lasd16rfrb",
|
|
"lasd13fasap",
|
|
"lasd13fpiu1",
|
|
"lasd13fpiu2",
|
|
"lasd13fpiu3",
|
|
"lasd13fpiu4",
|
|
"lasd13fpiu5",
|
|
"lasd13fsfpiu",
|
|
"asd13funm",
|
|
"lasd13funm2",
|
|
"lasd13funm3",
|
|
"lasd13funm4",
|
|
"lasdvic",
|
|
"lasdvic2",
|
|
"mustang19",
|
|
"rcsd13fpiu",
|
|
"rcsd13fpiu2",
|
|
"rcsd16fpiu",
|
|
"rcsd16fpiu2",
|
|
"rcsd16fpiu3",
|
|
"rcsd16fpiu4",
|
|
"rcsd20fpiu",
|
|
"rcsd20fpiu3",
|
|
"rcsdcaprice",
|
|
"rcsdcvpi",
|
|
"rcsdcvpi2",
|
|
"rcsdcvpi3",
|
|
"rcsdcvpi4",
|
|
"rcsdf150",
|
|
"rcsdf250",
|
|
"rcsdf2502",
|
|
"rcsdtahoe",
|
|
"chp11cvpi" ,
|
|
"chpcvpirotator",
|
|
"chpcvpirotatork9",
|
|
"chpcvpist1",
|
|
"chpcvpist2",
|
|
"f350",
|
|
"s2",
|
|
"h1",
|
|
"hcfbi2",
|
|
"ocsd1",
|
|
"ocsd2",
|
|
"ocsd3",
|
|
"ocsd4",
|
|
"ocsd5",
|
|
"ocsd6",
|
|
"ocsd7",
|
|
"ocsd8",
|
|
"dot1",
|
|
"uc_charger",
|
|
"slick23tahoe",
|
|
"slick23tahoeb",
|
|
"slick20durangob",
|
|
"slick25durango",
|
|
"slick25durangob",
|
|
"slick20fpiub",
|
|
"slick23charger",
|
|
"tp_raptor",
|
|
"uc23suburban",
|
|
"SMPDF150",
|
|
"19corvetteb",
|
|
"2020chargerb",
|
|
"19corvette",
|
|
"lacod6",
|
|
"lacofdbat",
|
|
"lacofdbug",
|
|
"lacofddztrk",
|
|
"lacofdeng",
|
|
"lacofdfoam",
|
|
"lacofdpat",
|
|
"lacofdrs",
|
|
"lacofdsup",
|
|
"lacofdt3",
|
|
"lacofdtrlr",
|
|
"lacofdusartrk",
|
|
"lacofdusartrlr",
|
|
"lacofdutil",
|
|
"mmech",
|
|
"petewrecker",
|
|
"chp20fpiu",
|
|
"chp20fpiugr",
|
|
"21rangostb",
|
|
"2020chargerb",
|
|
"slick23charger",
|
|
"uc_charger",
|
|
"uc23suburban",
|
|
"tp_raptor",
|
|
"walkinarrow",
|
|
"slick23tahoe",
|
|
"hp23charger1",
|
|
"hp21charger1",
|
|
"smpd16fpiu01",
|
|
"smpd16fpiu02",
|
|
"smpd16fpiu03",
|
|
"smpd16fpiu04",
|
|
"smpd16fpiu05",
|
|
"smpd16fpiu06",
|
|
"23ram6",
|
|
"23ram1",
|
|
"psp20fpiu2",
|
|
"5500wrecker",
|
|
"e450ambo",
|
|
"20slickfpiu3",
|
|
"20legacyfpiu3",
|
|
"21ppv3",
|
|
"21ppv1",
|
|
"21ppv2",
|
|
"23f150pr",
|
|
"23f150prbb",
|
|
"caltransf150",
|
|
"25rango1",
|
|
"25rango2",
|
|
"25rango3",
|
|
"25rango4",
|
|
"25rango5",
|
|
"25rango6",
|
|
"staff-25durangosl",
|
|
"maxhargu",
|
|
"staff-l2fpiu",
|
|
"staff-sl23hoe",
|
|
"maxchasrt",
|
|
"21f150",
|
|
"leg20fpiurb",
|
|
"leg21tahoeht_rb",
|
|
"24tactrd",
|
|
"f350bubba",
|
|
"23tahoeppvrb",
|
|
"23tahoessvrb",
|
|
"23hoe",
|
|
"23hoeb",
|
|
"23f150st",
|
|
"23ssjam",
|
|
"22f150rb",
|
|
"23f150pr",
|
|
"23f150prbb",
|
|
"BombSquadF450",
|
|
"sof250",
|
|
"sof250slick",
|
|
"sof250k9",
|
|
"rye20fpiu",
|
|
"rye20fpiurb",
|
|
"rye23tahoe",
|
|
"ls14calpr",
|
|
"ls14chrgr",
|
|
"ls14tahoe",
|
|
"ls14talpr",
|
|
"ls16falpr",
|
|
"ls18calpr",
|
|
"ls18chrgr",
|
|
"chp11cvpi",
|
|
"chp15expedition",
|
|
"chp15f250",
|
|
"chp15f250st",
|
|
"chp15fpiuk9",
|
|
"chp15fpiup",
|
|
"chp15fpius",
|
|
"chp15fpiu",
|
|
"chp15fpiuw",
|
|
"chp16fpiu",
|
|
"chp16fpiup",
|
|
"chp16ram",
|
|
"chp18charg",
|
|
"chp18chargst",
|
|
"chp18tahoe",
|
|
"chp20charg",
|
|
"chp20tahoe",
|
|
"chp21tahoe",
|
|
"chp23charg",
|
|
"chp23charg",
|
|
"chp23chargp",
|
|
"chp23durango",
|
|
"chp23durangop",
|
|
"chpum15fpiu",
|
|
"chp20fpiup",
|
|
"chp20fpiu",
|
|
"chp20fpiugr",
|
|
"chp20fpiu",
|
|
"chp21tahoe3",
|
|
"chp21tahoe4",
|
|
"chp20tahoek9",
|
|
"hp1",
|
|
"asp14charg",
|
|
"aspa9",
|
|
"aspa46",
|
|
"aspdbenton",
|
|
"aspg3",
|
|
"aspkdavis",
|
|
"aspst1",
|
|
"asp18tahoe1",
|
|
"asp18tahoe2",
|
|
"asp16fpiu",
|
|
"asp18dur",
|
|
"asp18durst",
|
|
"asp21dur",
|
|
"asp21durst",
|
|
"hab23charger",
|
|
"hab23chargerb",
|
|
"hp2",
|
|
"hp3",
|
|
"hp5",
|
|
"hp1st",
|
|
"hp3st",
|
|
"CHP9",
|
|
"ls20falpr",
|
|
"ls20tahoe",
|
|
"ls20talpr",
|
|
"21silvst",
|
|
"21silvstbb",
|
|
"25silvslick",
|
|
"25silvslickbb",
|
|
"1601",
|
|
"1615",
|
|
"1609",
|
|
"bostoncvpi",
|
|
"civ25durango",
|
|
"csp23chgr",
|
|
"ecsortrango",
|
|
"fhpmustang",
|
|
"fs23chgr",
|
|
"fs23chgrbb",
|
|
"fs23durango",
|
|
"fs23durangobb",
|
|
"fs23tahoe",
|
|
"fs23tahoebb",
|
|
"fs25f150",
|
|
"fs25f150bb",
|
|
"hmlegsilv",
|
|
"hmlegsilvbb",
|
|
"isp24tahoe",
|
|
"isp25durango",
|
|
"isp25durangopb",
|
|
"isp25durangopb3",
|
|
"ksp23tahoe",
|
|
"ksp23tahoeslick",
|
|
"ksp25durango",
|
|
"leg25durango",
|
|
"lib16fpiurb",
|
|
"mshp13explorer",
|
|
"mshp16explorer",
|
|
"mshp16explorerst",
|
|
"mshpcharger",
|
|
"mshpchargerst",
|
|
"mshpdurango",
|
|
"mshpdurangost",
|
|
"mshpstang",
|
|
"mst16fpiu",
|
|
"mst25durango",
|
|
"psp24tahoe",
|
|
"sos23chgrrb",
|
|
"wh23chgr",
|
|
"wh23chgrbb",
|
|
"SW8",
|
|
"2020charger",
|
|
"2020chargerb",
|
|
"hard23charger",
|
|
"hard23chargerb",
|
|
"slick20durango",
|
|
"slick20durangob",
|
|
"slick23charger",
|
|
"slick23chargerb",
|
|
"slick20fpiu",
|
|
"slick20fpiub",
|
|
"slick21chargb",
|
|
"slick21charg",
|
|
"uc_charger",
|
|
"uc_chargerb",
|
|
"slick23tahoe",
|
|
"slick23tahoeb",
|
|
"19corvette",
|
|
"19corvetteb",
|
|
"slick25durango",
|
|
"slick25durangob",
|
|
"uc23suburban",
|
|
"uc23suburbanb",
|
|
"lapd20fpiua",
|
|
"lapd20fpiub",
|
|
"lapd20sl",
|
|
"lapd20talpra",
|
|
"lapd20talprb",
|
|
"lapd20unm1",
|
|
"lapd20unm2",
|
|
"lasd20piu",
|
|
"vcsd25piu",
|
|
"2010cvpipov",
|
|
"jus16fpis",
|
|
"25f150xlt",
|
|
"lasd23tunm",
|
|
"lasd22tunm",
|
|
"lasd20funm",
|
|
"lasdf150u",
|
|
"22silv2visor",
|
|
"22silv2",
|
|
"firef250",
|
|
"22expdrbb",
|
|
"22expdr",
|
|
"202346gmc",
|
|
"lasd2025tahoe1",
|
|
"lasd13tahoe",
|
|
"bochechedesigns_t880nrclafd65",
|
|
"lapd19fpisv",
|
|
"lapd19flv",
|
|
"lapd19fsunm",
|
|
"lapd19fsl",
|
|
"lapd13fsunm",
|
|
"lapd13fsli",
|
|
"lapd13fsl",
|
|
"lapd13fpis",
|
|
"lapd20det",
|
|
"lapd20chrgrb",
|
|
"lapd18chrgrb",
|
|
"lapd18chrgr",
|
|
"lapd20chrgra",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
|
|
|
|
|
|
|
|
|
|
"23ppv",
|
|
"hpdghost1",
|
|
"hpdghost2",
|
|
"23ppv",
|
|
"hpdghost1",
|
|
"hpdghost2",
|
|
"16dpsppv",
|
|
"ISP_20charger",
|
|
"HCSO25FPIU",
|
|
"25darkhorse",
|
|
"19mustgtbb",
|
|
"19mustgtrw",
|
|
"19mustgtrb",
|
|
"21ppvHCSO",
|
|
"SOcamaro",
|
|
"25piuumbb",
|
|
"25piuum",
|
|
"MPD21ppv",
|
|
"MPD22ppv",
|
|
"MPD23ppv",
|
|
"MPD24ppv",
|
|
"BCSO21ppv",
|
|
"IDHP_25stang",
|
|
"PCSO18ppv",
|
|
"PSLPD_unit95",
|
|
"SO11",
|
|
"SO4",
|
|
"SO2",
|
|
"HCSO16006",
|
|
"SO8",
|
|
"GSP627",
|
|
"233ppv",
|
|
"lib20fpiu",
|
|
"PD1",
|
|
"PD3",
|
|
"PD2",
|
|
"leg21tahoest_rb",
|
|
"leg21tahoest_bb",
|
|
"leg21tahoeht_bb",
|
|
"leg21tahoeht_rb",
|
|
"fwpd_stbb",
|
|
"fwpd_st",
|
|
"903jr",
|
|
"23silverlt",
|
|
"18chargbb",
|
|
"18charg",
|
|
"24mustgt",
|
|
"21canine",
|
|
"22canine",
|
|
"24umhoe",
|
|
"reevesaceunit",
|
|
"SO21hoe_bb",
|
|
"SO21hoe_rb",
|
|
"23camss",
|
|
"31587",
|
|
"wc20fpiustbb",
|
|
"wc20fpiustrb",
|
|
"24sodur_ht",
|
|
"23ram1",
|
|
"23ram6",
|
|
"23ram2",
|
|
"23ram3",
|
|
"SW3",
|
|
"SW2",
|
|
"SW1",
|
|
"sdpd23fpiu",
|
|
"sdpd21tahoe ",
|
|
"sdpd20fpiu",
|
|
"sdpd18tahoe",
|
|
"sdpd16fwatch",
|
|
"sdpd16fpiust",
|
|
"sdpd16fpiu",
|
|
"sdpd13fpiu",
|
|
"ocsdk9hoe",
|
|
"ocsd24hoe",
|
|
"ocsd24hoe1",
|
|
"ocsd24durst",
|
|
"ocsd24dur",
|
|
"ocsd20fpiutrans",
|
|
"ocsd20fpiust",
|
|
"ocsd20fpiu2",
|
|
"ocsd20fpiu",
|
|
"ocsd18tahoe",
|
|
"ocsd18tahoest",
|
|
"ocsd16fpiust",
|
|
"ocsd16fpiu",
|
|
"orlando23tahoe",
|
|
"thp24dur",
|
|
"258charger",
|
|
"275charger",
|
|
"296charger",
|
|
"351charger",
|
|
"554charger",
|
|
"643charger",
|
|
"689charger",
|
|
"751charger",
|
|
"767charger",
|
|
"891charger",
|
|
"940charger",
|
|
"960charger",
|
|
"704durango",
|
|
"146charger",
|
|
"122charger",
|
|
"7644camaro",
|
|
"843tahoe",
|
|
"438camaro",
|
|
"104charger",
|
|
"4003cpd",
|
|
"1830",
|
|
"1822",
|
|
"1806charger",
|
|
"352charger",
|
|
"878truck",
|
|
"975tahoe",
|
|
"615",
|
|
"gt24non",
|
|
"gspcharger",
|
|
"128durango",
|
|
"640",
|
|
"704",
|
|
"751",
|
|
"128",
|
|
"asp14charg",
|
|
"asp16fpiu",
|
|
"asp18dur",
|
|
"asp18durst",
|
|
"asp18tahoe1",
|
|
"asp18tahoe2",
|
|
"asp21dur",
|
|
"asp21durst",
|
|
"aspa9",
|
|
"aspa46",
|
|
"aspdbenton",
|
|
"aspg3",
|
|
"aspkdavis",
|
|
"aspst1",
|
|
"fhp_20fpiu2",
|
|
"fhp_20fpiu2st",
|
|
"fhp_charger3",
|
|
"fhp_charger3bw",
|
|
"fhp_charger3st",
|
|
"fhp_charger3ta",
|
|
"fhp_charger3uc",
|
|
"21silvst",
|
|
"21silvstbb",
|
|
"1601",
|
|
"1609",
|
|
"1615",
|
|
"bostoncvpi",
|
|
"civ25durango",
|
|
"csp23chgr",
|
|
"ecsortrango",
|
|
"fhpmustang",
|
|
"fs23chgr",
|
|
"fs23chgrbb",
|
|
"fs23durango",
|
|
"fs23durangobb",
|
|
"fs23tahoe",
|
|
"fs23tahoebb",
|
|
"fs25f150",
|
|
"fs25f150bb",
|
|
"hmlegsilv",
|
|
"hmlegsilvbb",
|
|
"isp24tahoe",
|
|
" ",
|
|
"isp25durango",
|
|
"isp25durangopb",
|
|
"isp25durangopb3",
|
|
"ksp23tahoe",
|
|
"ksp23tahoeslick",
|
|
"ksp25durango",
|
|
"leg25durango",
|
|
"lib16fpiurb",
|
|
"mshp13explorer",
|
|
"mshp16explorer",
|
|
"mshp16explorerst",
|
|
"mshpcharger",
|
|
"mshpchargerst",
|
|
"mshpdurango",
|
|
"mshpdurangost",
|
|
"mshpstang",
|
|
"mst16fpiu",
|
|
"mst25durango",
|
|
"psp24tahoe",
|
|
"sos23chgrrb",
|
|
"wh23chgr",
|
|
"wh23chgrbb",
|
|
"st25",
|
|
"uc18chargbb",
|
|
"apdfpiuwestin",
|
|
"apdfpiu",
|
|
"apdcharger2",
|
|
"col20fpiub",
|
|
"col20fpiu",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
"GL_Mustang",
|
|
"24mustunmr1",
|
|
"rbst18charger",
|
|
"opd20slickrb",
|
|
"opd20slick",
|
|
"23sirbb",
|
|
"23sir",
|
|
"chp23durangop",
|
|
" ",
|
|
" ",
|
|
},
|
|
|
|
Vehicles = {
|
|
-- this is not required!
|
|
-- see documentation for instructions!
|
|
-- https://docs.dwnstr.com/ulc/configuration
|
|
}
|
|
}
|