chaserconfig.lua

This file is responsible for setting the main configurations for C.H.A.S.E.R, and by default is filled like this:

Chaserconfig = {} --- Do Not Change, edit, or add new values, may cause issues.
---------------------------------------------------------------------------------GENERAL SETTINGS------------------------------------------------------------------------------------
Chaserconfig.enablecustombasevents = true
Chaserconfig.enableintegratedhud = true
Chaserconfig.integratedhudrefreshrate = 11
Chaserconfig.showhudspeedinmph = false
Chaserconfig.enabledownshiftprotection = false
Chaserconfig.driftspeedfactor = 1.75
Chaserconfig.driftscorepointsmultiplier = 10.0
Chaserconfig.driftscorerewardmultiplier = 0.4
Chaserconfig.nitrousspeedregenfactor = 0.0001111
Chaserconfig.enableautosequencial = true

--- PP Calibrated by Demo "Nero", with -15% weight reduction, and 100mm turbo.

Chaserconfig.pp_maxptwratio = 1.0
Chaserconfig.pp_minptwratio = 0.05
Chaserconfig.pp_maxacctime = 13.0 -- since it's acceleration, we consider the less the better, that's why here we have a lower value than minimal.
Chaserconfig.pp_minacctime = 47.5
Chaserconfig.pp_maxspeedrate = 532 
Chaserconfig.pp_minpeakgriprate = 1.0 -- you'll never wanna have the minimal peak grip at the same as the lowest grip tire you have, if you do, it'll show that tire as "0" grip.
Chaserconfig.pp_maxpeakgriprate = 2.3
Chaserconfig.pp_minpeakbikegriprate = 1.0
Chaserconfig.pp_maxpeakbikegriprate = 1.8

---------------------------------------------------------------------------------GENERAL SETTINGS------------------------------------------------------------------------------------
---------------------------------------------------------------------------------KEYBINDS SETTINGS------------------------------------------------------------------------------------
-- # Use this website for reference. https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/

Chaserconfig.defaultbindupshift = "UP"
Chaserconfig.defaultbinddownshift = "DOWN"
Chaserconfig.defaultbindclutch = "LMENU"
Chaserconfig.defaultbindlaunchcontrol = "NUMPAD4"
Chaserconfig.defaultbindatgearlock = "NUMPAD5"
Chaserconfig.defaultbindtractioncontrol = "NUMPAD6"
Chaserconfig.defaultbindstabilitycontrol = "NUMPAD7"
Chaserconfig.defaultbindconductionmode = "NUMPAD8"
Chaserconfig.defaultbindlockorbitcam = "MOUSE_MIDDLE"
Chaserconfig.defaultbindnitrous = "TAB"
Chaserconfig.defaultbindhighlowrange = "NUMPAD9"
---------------------------------------------------------------------------------KEYBINDS SETTINGS------------------------------------------------------------------------------------

enablecustombasevents:

Enables or Disables the usage of our custom base events solution, disabling it may increase performance, we recommend to use the integrated solution.

enableintegratedhud:

Enables or Disables the usage of our integrated hud.

integratedhudrefreshrate:

The Refresh Rate in frametime (ms) of the ui

EX: 16 = ~ 60 FPS

enabledownshiftprotection:

Enable this if you wish to have a downshift protection to avoid over revving on sequential cars.

driftspeedfactor:

A Multiplier for the forces when drifiting, set it at 1.0 for raw experience, or increase it if you want to gain speed when drifting for a more arcade experience, i don't recommend going below 1.0

driftscorepointsmultiplier:

A Multiplier for the raw score points, use this to define the ammount of points you want to show, it will also affect the nitrous reward.

Set it to 0 to disable the drift scoreboard.

driftscorerewardmultiplier:

A separated multiplier for the nitrous reward of your drift score, increase or decrease this if you want to give more or less nitrous per drift point.

Set it to 0 to disable the nitrous reward when drifting.

nitrousspeedregenfactor:

A base value for the high-speed nitrous regeneration, the more the faster the regen, the less, the slower. Set it to 0 to disable the auto nitrous regen.

enableautosequencial:

Enable this if you wish to allow the switch between auto and sequential, on cars that have sequential transmission.


Calibrating the PP system

pp_maxptwratio:

The maximum PTW (Power,Torque,Weight) ratio for comparison on the Performance Points system.

pp_minptwratio:

The Minimal PTW (Power,Torque,Weight) ratio for comparison on the Performance Points system.

pp_maxacctime:

The Maximum Acceleration Time for comparison on the Performance Points system. (Since it's acceleration, we consider the less the better, that's why here we have a lower value than minimal.)

pp_minacctime:

The Minimum Acceleration Time for comparison on the Performance Points system.

pp_maxspeedrate:

The maximum top speed for comparison, in KM/H

pp_minpeakgriprate:

Minimal peak tire grip

Recommended: (Use your worst tire model peak grip - 20% here)

pp_maxpeakgriprate:

Maximum peak tire grip

Recommended: (Use your best tire model peak grip here)

pp_minpeakbikegriprate:

Minimal peak tire grip for when the ismotorcycle flag is true.

Recommended: (Use your worst tire model peak grip - 20% here)

pp_maxpeakbikegriprate:

Maximum peak tire grip for when the ismotorcycle flag is true.

Recommended: (Use your best tire model peak grip here)

Last updated