Config file

config = {}
config.maxAirTime = 4 -- How many seconds in the air will the wheels break? (2 = 1 Second)
config.disableClass = { -- https://docs.fivem.net/natives/?_0x29439776AAA00A62
    13, 15, 16, 21
}
config.disableModel = {
    `wheelchair`,
    `windsurf`,
}
config.breakAllWhellPercent = 40 -- probability of all wheels breaking or bursting

--[[ 
    Which wheels should break when you have an crash?
    1- Front left wheel
    2- Front left wheel, Rear right wheel
    3- Front left wheel, Rront right wheel, Rear right wheel
    4- All wheel
]]
config.randomMinMax = {
    min = 1,
    max = 4,
}

Last updated