-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.lua
52 lines (41 loc) · 1.71 KB
/
config.example.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Config = {}
-- If you are using WM Server Sirens, uncomment below
-- See https://github.com/Walsheyy/WMServerSirens
Config.AudioBanks = {
'DLC_WMSIRENS\\SIRENPACK_ONE',
}
-- Change these values to tweak the light reflections around your vehicle
Config.EnvironmentalLights = {
Range = 25.0, -- how far the light reaches
Intensity = 0.5, -- how intense the light source is
}
-- You can make the flashing high beams brighter. Set to 1.0 for GTA default
Config.HighBeamIntensity = 5.0
-- Whether vehicle passengers are allowed to control the lights and sirens
Config.AllowPassengers = false
-- Whether you can toggle the siren, even when the lights are out
Config.SirenAlwaysAllowed = false
-- Whether vehicle indicator control should be enabled
Config.Indicators = true
-- Enables a short honk when a siren is activated
Config.HornBlip = false
-- Enables a short beep when a light stage or siren is activated
Config.Beeps = true
-- Duration for the warning beep (in seconds)
-- Should be equal to the WarningBeep.ogg file
-- Only change this if you replace the audio file with your own
Config.WarningBeepDuration = 2.0
-- Enables controller support for controlling the primary light stage and the sirens
-- DPAD_LEFT = toggle primary lights
-- DPAD_DOWN = toggle siren 1
-- B = activate next siren
Config.ControllerSupport = true
-- Customize various strings to your own liking
Config.Translations = {
VehicleControlMenu = {
MenuTitle = 'Vehicle Control Menu',
ExtraDoesNotExist = 'This extra does not exist on your vehicle!',
MiscDoesNotExist = 'This misc does not exist on your vehicle!',
FlashingHighBeam = 'Flashing high beam',
}
}