Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Config = {}
- -- Type in 'esx' or 'qbcore' depending on your framework
- Config.framework = 'esx'
- --Set useCommand to true if you are using standalone version of the script
- Config.command = {
- useCommand = false,
- commandName = 'brakeCut'
- }
- Config.commandName = 'brakeCut'
- Config.brakeCutting = {
- -- how long the player has to search before cutting brakes (in ms)
- searchingTime = 7000,
- -- how many inputs player has to make before brakes get cut
- cuttingLength = 10,
- -- how long player has to wait before attempting to cut brakes again (in ms)
- cuttingMessedUpDuration = 5000,
- -- inputs player has to make to successfully cut the brakes
- cuttingKeybinds = {
- 'A',
- 'D',
- }
- }
- -- If player should be able to use handbrake when brakes fail
- Config.disableHandbrake = true
- --Item that is used to cut the brakes
- Config.toolName = 'pd_wirecutters'
- --These vehicles' brakes can not be cut
- Config.blacklistedVehicles = {
- 'police',
- 'ambulance'
- }
- Config.particles = {
- --If particles should fly out of wheels when brakes fail
- particlesOn = true,
- --Particle scale
- scale = 1.0,
- --Particle dictionary
- dict = 'core',
- particle = 'veh_train_sparks'
- }
- -- How long player has to brake for the brakes to fail
- Config.brakingTime = 500
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement