Advertisement
Guest User

Untitled

a guest
Sep 15th, 2022
791
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. Config = {}
  2.  
  3. -- Type in 'esx' or 'qbcore' depending on your framework
  4. Config.framework = 'esx'
  5.  
  6. --Set useCommand to true if you are using standalone version of the script
  7. Config.command = {
  8. useCommand = false,
  9. commandName = 'brakeCut'
  10. }
  11.  
  12. Config.commandName = 'brakeCut'
  13.  
  14. Config.brakeCutting = {
  15. -- how long the player has to search before cutting brakes (in ms)
  16. searchingTime = 7000,
  17. -- how many inputs player has to make before brakes get cut
  18. cuttingLength = 10,
  19. -- how long player has to wait before attempting to cut brakes again (in ms)
  20. cuttingMessedUpDuration = 5000,
  21. -- inputs player has to make to successfully cut the brakes
  22. cuttingKeybinds = {
  23. 'A',
  24. 'D',
  25. }
  26. }
  27. -- If player should be able to use handbrake when brakes fail
  28. Config.disableHandbrake = true
  29.  
  30. --Item that is used to cut the brakes
  31. Config.toolName = 'pd_wirecutters'
  32.  
  33. --These vehicles' brakes can not be cut
  34. Config.blacklistedVehicles = {
  35. 'police',
  36. 'ambulance'
  37. }
  38.  
  39. Config.particles = {
  40. --If particles should fly out of wheels when brakes fail
  41. particlesOn = true,
  42. --Particle scale
  43. scale = 1.0,
  44. --Particle dictionary
  45. dict = 'core',
  46. particle = 'veh_train_sparks'
  47. }
  48.  
  49. -- How long player has to brake for the brakes to fail
  50. Config.brakingTime = 500
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement