Parking sensor configuration
1. ParkSensor
This option is used to enable or disable the parking sensor
Config.ParkSensor = true
When set to true, the parking sensors work and when vehicle is getting closer to peds, vehicles or objects, vehicle starts beeping (like IRL)
Config.ParkSensor = false
This will turn off the park sensor system
2. DebugDistance
This option is used to help you to easily configurate the script:)
Config.DebugDistance = true
When set to true, the debug system turns on and everytime you are reversing and get close to any vehicles, the distance starts printing in the F8 console. this distance can be used on Config.Thresholds
Config.DebugDistance = false
This will turn of this system
3. BeepSound
This option is used to change the beep sound
Name = "Beep_Red",
This is the BEEP sound name to play
Ref = "DLC_HEIST_HACKING_SNAKE_SOUNDS"
This is the BEEP sound set name
4. BeepInvertals
This option is used to change the beep sound
Invertals are in milliseconds!
The number can not be lower than 200, this is because of script cpu usage optimizations
far = 1200,
When you are at far distance, BEEP sound plays every 1.2 seconds!
medium = 700,
When you are at medium distance, BEEP sound plays every 0.7 seconds!
close = 500,
When you are at close distance, BEEP sound plays every 0.5 seconds!
veryClose = 200
When you are at very close distance, BEEP sound plays every 0.2 seconds!
5. Thresholds
This option is used to change the beep sound
The number can not be lower than 200, this is because of script cpu usage optimizations
far = 10.0,
When you are 10 meters away from the target vehicle, it is considered as far distance
medium = 8.0,
When you are 8 meters away from the target vehicle, it is considered as medium distance
close = 6.0,
When you are 6 meters away from the target vehicle, it is considered as close distance
veryClose = 5.0
When you are 5 meters away from the target vehicle, it is considered as veryClose distance
6. DetectPed, DetectObj, DetectVeh
This option is used to change the sensor detection logic
Config.DetectPed = true
With this option, sensors will detect nearby peds!
Config.DetectObj = true
With this option, sensors will detect nearby objects!
Config.DetectVeh = true
With this option, sensors will detect nearby vehicles!
Last updated