160 lines
4.4 KiB
Lua
160 lines
4.4 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
|
|
-- enable this if you want to use ULC's light control features such as cycling lights
|
|
-- 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 = {},
|
|
|
|
-- Import confiurations here
|
|
-- Add the resource names of vehicle resources that include a ulc.lua config file
|
|
ExternalVehResources = {
|
|
"21slickppv1",
|
|
"20legacyfpiu1",
|
|
"21slickppv1",
|
|
"gspcharger",
|
|
"sdgcvpi",
|
|
"Polmrambb23",
|
|
"swatsubrb",
|
|
"909_21suburban",
|
|
"909_heatcharger",
|
|
"valor5bb",
|
|
"188tahoe",
|
|
"jw_21fpiuintk9b",
|
|
"c322prsilv",
|
|
"24valor16sedan",
|
|
"24valor16sedan2",
|
|
"24valor16sedan3",
|
|
"24valor16sedan4",
|
|
"24valor16sedan20",
|
|
"24valor16sedan20sl",
|
|
"24valor16utility",
|
|
"24valor16utility2",
|
|
"24valor16utility3",
|
|
"24valor16utility4",
|
|
"24valor16utility20",
|
|
"24valor16utility20sl",
|
|
"24valor18sedan",
|
|
"24valor18sedan2",
|
|
"24valor18sedan3",
|
|
"24valor18sedan4",
|
|
"24valor18sedan20",
|
|
"24valor18sedan20sl",
|
|
"24valor18suv",
|
|
"24valor18suv2",
|
|
"24valor18suv3",
|
|
"24valor18suv4",
|
|
"24valor18suv20",
|
|
"24valor18suv20sl",
|
|
"24valor18utility",
|
|
"24valor18utility2",
|
|
"24valor18utility3",
|
|
"24valor18utility4",
|
|
"24valor20utility",
|
|
"24valor20utility2",
|
|
"24valor20utility3",
|
|
"24valor20utility4",
|
|
"24valor20utility20",
|
|
"24valor20utility20sl",
|
|
"24valor1500",
|
|
"24valor2500",
|
|
"24valor15002",
|
|
"24valor15003",
|
|
"24valor15004",
|
|
"24valor25002",
|
|
"24valor25003",
|
|
"24valor25004",
|
|
"24valor150020",
|
|
"24valor150020sl",
|
|
"24valor250020",
|
|
"24valor250020sl",
|
|
"24eaglelegacy",
|
|
"24eaglelegacy2",
|
|
"24eaglelegacy3",
|
|
"24eaglelegacy4",
|
|
"24eaglelegacy20",
|
|
"24eaglesedan",
|
|
"24eaglevalor",
|
|
"24eaglevalor2",
|
|
"24eaglevalor3",
|
|
"24eaglevalor4",
|
|
"24eaglevalor20",
|
|
"24eaglevalor20sl",
|
|
"deanfleetengine4",
|
|
"lasd13",
|
|
"lasd14",
|
|
"lasd12",
|
|
"18lasdchrg",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
|
|
},
|
|
|
|
Vehicles = {
|
|
-- this is not required!
|
|
-- see documentation for instructions!
|
|
-- https://docs.dwnstr.com/ulc/configuration
|
|
}
|
|
}
|