Config
Config = {}
-- Enabling this will add additional prints and display of the resource within the pot
Config.debug = false
--
Config.locale = 'en'
Config.sql = {
driver = 'oxmysql', -- oxmysql or ghmattimysql or mysql
-- If you're using an older version of oxmysql set this to false
newOxMysql = true,
}
Config.command = {
enabled = true,
command = 'obd',
}
Config.usage = {
requirements = {
item = {
enabled = false,
name = 'kq_obd_device',
},
job = {
enabled = false,
jobs = {
'mechanic',
'bennys',
},
},
}
}
Config.faults = {
-- Global fault cooldown to prevent spam/quick writing of identical faults (in ms)
globalCooldown = 30000
}
-- Whether the script should ignore a population type check when syncing new vehicles
Config.skipPopulationTypeCheck = false
Config.mods = {
--- Handling mods
throttleResponse = true,
idleRpms = true,
--- Interior mods
interiorLightColor = true,
headlightBrightness = true,
dashboardLightColor = true,
moodLighting = true,
--- "FUN" mods, less serious/realistic
-- You may want to disable these if you're running a realistic server
exhaustPops = true,
wheelieTune = true,
engineTune = true,
--- Light related mods
brakeLightKillswitch = true,
highIntensityBrakeLights = true,
highbeamsOnHonk = true,
xenonLightsColor = true,
automaticEmergencyLights = true,
--- Misc mods
radioPower = true,
}
Last updated