Advertisement
Guest User

Drift Smoke 1.0.0 Default Config

a guest
Jan 17th, 2022
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.58 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.debug = false
  4.  
  5.  
  6. ----------------------
  7. --  Smoke Settings  --
  8. ----------------------
  9.  
  10. -- The threshold of loss of traction at which the smoke will start appearing (6.0 is a good value)
  11. Config.driftThreshold = 6.0
  12.  
  13. -- Scale multiplier of the smoke, to make all smoke larger increase this value
  14. Config.scaleMultiplier = 1
  15.  
  16. -- Whether or not to use colored smoke, when false cars with custom tire smoke will still produce white smoke
  17. Config.allowColoredSmoke = true
  18.  
  19. -- Value between 0 and 100 | Defines the density of the smoke
  20. Config.smokeDensity = 90
  21.  
  22. -- Opacity of the smoke
  23. Config.smokeOpacity = 0.35
  24.  
  25.  
  26. ----------------------
  27. --     Burnouts     --
  28. ----------------------
  29.  
  30. -- Whether or not to enlarge the smoke during a burnout
  31. Config.bigBurnoutSmoke = true
  32.  
  33. -- Whether or not to keep making the smoke larger as the burnout continues
  34. Config.growBurnoutSmoke = true
  35.  
  36. -- Maximum size of the burnout
  37. Config.maxBurnoutSmokeMultiplier = 1.6
  38.  
  39.  
  40.  
  41. ----------------------
  42. --       Other      --
  43. ----------------------
  44.  
  45. -- Whether or not you want smoke to be produced on offroad surfaces like dirt
  46. Config.smokeOffroad = false
  47.  
  48. -- Surfaces where smoke will always be produced
  49. -- To check the surface you're on you can do /surface with debug mode enabled
  50. Config.roadSurfaces = {
  51.     1, 3, 4, 12
  52. }
  53.  
  54. -- Whether or not only allow certain vehicles to produce the smoke
  55. Config.whitelist = {
  56.     useWhitelist = false,
  57.     vehicles = {
  58.         'silvia',
  59.         'brz13',
  60.         'zion3',
  61.         'tampa2',
  62.         'futo',
  63.         'yosemite2',
  64.     }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement