KuzQuality - FiveM Documentation
Webstore
  • KuzQuality - FiveM Scripts
  • Useful links
    • KuzQuality.com | Shop now
    • Our Discord
  • General
    • Common issues
    • Frequently asked questions
    • Updating server artifacts
    • Installation basics
  • RESOURCES
    • Premium Resources
      • Shell Creator
        • Config
        • Installation Guide
        • Video guide
        • API
          • Server
          • Client
      • Cocaine Production
        • Config
        • Installation Guide
      • Roof boxes & bike racks
        • Config
        • Installation Guide
        • API
      • Meth Cooking
        • Config
        • Installation Guide
      • Private islands
        • Config
        • Installation Guide
      • Real offroad physics
        • Config
        • Installation Guide
        • API
      • Placeable items
        • Config
        • Inventory integrations
        • Installation Guide
      • Car Dyno
        • Config
        • Installation Guide
      • Outfit Bag 2.0
        • Config
        • Installation Guide
      • Realistic wheel damage
        • Config
      • Smash 'n Grab 2.0
        • Config
        • Installation Guide
      • Animation Suggestions
        • Config
        • Installation Guide
      • Smugglers Heist
        • Config
        • Installation Guide
      • Car Heist
        • Config
      • Towing & Winching
        • Config
        • Installation Guide
      • Security Systems
        • Config
        • Developer Docs
      • Drift Tires
        • Config
        • Installation Guide
      • Engine Swaps [ESX]
        • Config
      • Engine Swaps [QBCore]
        • Config
      • Islands Generator
        • Config
        • Installation Guide
      • Brake Overheating
        • Config
        • Installation Guide
      • Drift Smoke
        • Config
      • Advanced Ped Looting
        • Config
        • Installation Guide
      • Bike Jump Ability
        • Config
        • Installation Guide
      • Hideouts 2.0
        • Config
      • Detective Tools
        • Config
      • Classic Outfit Bag
        • Config
      • Traction Control Toggle
        • Config
      • Car Lift
        • Config
      • Vehicle Towing
        • Config
      • RGB Controller (Full)
        • Config
      • Diving [ESX]
        • Config
      • Diving [QBCore]
        • Config
    • Free Resources
      • Prop Placer
        • Config
      • Nightclub Heist
        • Config
      • Basic Security Lasers
        • Config
        • Developer Docs
      • Advanced Airdrop
        • Config
      • Smooth Throttle Control
        • Config
      • Better rollbacks & handbrake turns
        • Config
      • Wild Cannabis (Loot Areas Example)
        • Config
      • RGB Controller (Basic)
        • Config
      • Dragy
        • Config
      • Easter Egg Hunt
        • Config
      • Loot Areas
        • Config
        • Developer docs
  • KQ Link
    • KQ Link | Installation guide
    • Using Git
    • Developer reference
      • Exports
        • Server
        • Client
Powered by GitBook
On this page
  1. RESOURCES
  2. Premium Resources
  3. Drift Smoke

Config

Config = {}

Config.debug = false


----------------------
--	Smoke Settings  --
----------------------

-- The threshold of loss of traction at which the smoke will start appearing (6.0 is a good value)
Config.driftThreshold = 6.0

-- Scale multiplier of the smoke, to make all smoke larger increase this value
Config.scaleMultiplier = 1

-- Whether or not to use colored smoke, when false cars with custom tire smoke will still produce white smoke
Config.allowColoredSmoke = true

-- Value between 0 and 100 | Defines the density of the smoke
Config.smokeDensity = 90

-- Opacity of the smoke
Config.smokeOpacity = 0.35


----------------------
--	   Burnouts     --
----------------------

-- Whether or not to enlarge the smoke during a burnout
Config.bigBurnoutSmoke = true

-- Whether or not to keep making the smoke larger as the burnout continues
Config.growBurnoutSmoke = true

-- Maximum size of the burnout
Config.maxBurnoutSmokeMultiplier = 1.6



----------------------
--	     Other      --
----------------------

-- Whether or not to enable /startsmoke and /stopsmoke commands
Config.toggleCommands = true

-- Whether or not you want smoke to be produced on offroad surfaces like dirt
Config.smokeOffroad = false

-- Surfaces where smoke will always be produced
-- To check the surface you're on you can do /surface with debug mode enabled
Config.roadSurfaces = {
    1, 3, 4, 12
}

-- Whether or not only allow certain vehicles to produce the smoke
Config.whitelist = {
    useWhitelist = false,
    vehicles = {
        'silvia',
        'brz13',
        'zion3',
        'tampa2',
        'futo',
        'yosemite2',
    }
}

-- Whether or not to only enable drift smoke for vehicles that have drift tires (KuzQuality.com/(COMING SOON))
Config.onlyWithDriftTires = false
PreviousDrift SmokeNextAdvanced Ped Looting

Last updated 8 months ago