diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f4f44a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +ulc.zip diff --git a/ulc/config.lua b/ulc/config.lua index 312c5a7..e0b177e 100644 --- a/ulc/config.lua +++ b/ulc/config.lua @@ -24,7 +24,7 @@ Config = { -- distance at which to check for other vehicles to sync patterns with syncDistance = 32, -- seconds before a single client triggers sync again - syncCooldown = 10, + syncCooldown = 4, }, -- Steady Burn Config; diff --git a/ulc/examples/template_ulc.lua b/ulc/examples/template_ulc.lua deleted file mode 100644 index ec4a442..0000000 --- a/ulc/examples/template_ulc.lua +++ /dev/null @@ -1,45 +0,0 @@ ---[[ -Ultimate Lighting Controller Config -the ULC resource is required to use this configuration -get the resource here: https://github.com/Flohhhhh/ultimate-lighting-controller/releases/latest - -To learn how to setup and use ULC visit here: https://docs.dwnstr.com/ulc/overview -]] - -return { names = {"yourvehiclename"}, - steadyBurnConfig = { - forceOn = false, - useTime = false, - disableWithLights = false, - sbExtras = {} - }, - parkConfig = { - usePark = false, - useSync = false, - syncWith = { "" }, - pExtras = {}, - dExtras = {} - }, - hornConfig = { - useHorn = false, - hornExtras = {} - }, - brakeConfig = { - useBrakes = false, - speedThreshold = 3, - brakeExtras = {} - }, - reverseConfig = { - useReverse = false, - reverseExtras = {} - }, - - --[[ example button - {label = 'STAGE 2', key = 5, extra = 8, linkedExtras = {}, offExtras = {1, 2}}, - ]] - - buttons = { --paste your buttons below - - - } -} \ No newline at end of file