C.H.A.S.E.R Docs
  • Welcome to C.H.A.S.E.R !
  • Fundamentals
    • The "chaserfirststartup" command
    • Creating your first chaser profile
    • vehdata.lua vs handling.meta
    • Utilizing the turbo viewer tool
    • Utilizing the final drive calculator tool
    • Weight Reduction
    • Engine Swapping
    • Utilizing the C.H.A.S.E.R chase cam
    • Creating an engineswap profile
    • Calibrating the PP system
    • Adapting your UI to work with C.H.A.S.E.R
  • The Config Folder
    • blocklist.lua
    • camera_tunables.lua
    • chaserconfig.lua
    • globalvehdata.lua
    • enginedata.lua
    • tiredata.lua
    • vehdata.lua
  • get exports
    • chaser_getpp
    • chaser_getctm
    • chaser_getvehname
    • chaser_getcurrentrpm
    • chaser_getminmaxrpm
    • chaser_gettelemetry
    • chaser_getturbopressure
    • chaser_getloadstatus
    • chaser_getassists
    • chaser_gettransmission
    • chaser_gethilo
    • chaser_getflywheel
    • chaser_getdifferential
    • chaser_getenginebaysize
    • chaser_gettyre
    • chaser_getturbo
    • chaser_getavgacc
    • chaser_getefficiency
    • chaser_getengineswapdata
    • chaser_getvehicledata
    • chaser_getweight
    • chaser_getengine
    • chaser_getengineptwratio
    • chaser_getnitrous
    • chaser_getscoreboardsfxmuted
    • chaser_getcurrentdriftscore
    • chaser_getcurrentdriftscoremultiplier
    • chaser_getlastbankedscore
    • chaser_getstackeddriftcount
    • chaser_getwalltapdriftcount
    • chaser_gethighspeeddriftcount
    • chaser_getvehicledata
    • chaser_getshiftdelay
    • chaser_getbrakingcapacity
    • chaser_getbrakingfbias
    • chaser_getswaybarstrenght
    • chaser_getswaybarfbias
    • chaser_getsuspension
  • Set exports
    • chaser_setassists
    • chaser_settransmission
    • chaser_settransmissionmode
    • chaser_setflywheel
    • chaser_setdifferential
    • chaser_settyre
    • chaser_setturbo
    • chaser_setweight
    • chaser_setengine
    • chaser_setnitrous
    • chaser_togglehilo
    • chaser_togglescoreboardsfx
    • chaser_setcurrentdriftscoremultiplier
    • chaser_setshiftdelay
    • chaser_setbrakingcapacity
    • chaser_setbrakingfbias
    • chaser_setswaybarstrenght
    • chaser_setswaybarfbias
    • chaser_setsuspension
  • Other Exports
    • chaser_ctm
    • chaser_calculatetuningacc
    • chaser_forcereload
    • chaser_refreshengine
    • chaser_calcacc
    • chaser_isvehicledrifting
    • chaser_disablechaser
    • chaser_enablechaser
    • chaser_startcamera
    • chaser_stopcamera
  • Networking
    • Statebags
  • User Interface
    • NUI Events
  • Controls
    • Keybinds
  • Extras
    • Demos & Softwares
    • Math
    • With love
Powered by GitBook
On this page
  • usemotionbluronhoodcam:
  • hashilorangemode:
  • hoody:
  • engbaysize:
  • nitroustimer:
  • hoodz:
  • model:
  • hasdct:
  • cachedwheelradius:
  • thiscarhasnitrous:
  • safetopspeed:
  • hoodzoffset:
  • hoodyoffset:
  • interpolationspeedoffset:
  • maincamzoffset:
  1. The Config Folder

globalvehdata.lua

Previouschaserconfig.luaNextenginedata.lua

Last updated 9 months ago

The globalvehdata.lua is a file that stores user configuration for specific vehicle and also hold precalculated data.

Unlike other files, you don't need to create a profile here, as it will be automatically generated. You can generate your own globalvehdata.lua by following this tutorial:

An example of a globalvehdata.lua key is:

globalvehdata = {
	["elegy"] = {
		["usemotionbluronhoodcam"] = true,
		["hashilorangemode"] = false,
		["hoody"] = 0.9,
		["engbaysize"] = 2.135,
		["nitroustimer"] = 5,
		["hoodz"] = 0.51967906951904,
		["model"] = "elegy",
		["hasdct"] = false,
		["cachedwheelradius"] = 0.41626,
		["thiscarhasnitrous"] = true,
		["safetopspeed"] = 197.33335367839,
		["hoodzoffset"] = 0.1,
		["hoodyoffset"] = 0,
		["interpolationspeedoffset"] = 0.001,
		["maincamzoffset"] = 0,
	},
}

usemotionbluronhoodcam:

User config, to enable or disable motion blur when using C.H.A.S.E.R hood camera.

hashilorangemode:

User config, to enable or disable the high/low range differential on the vehicle.

hoody:

Calculated value for the hood y position offset.

engbaysize:

Calculated value for the enginebay size.

nitroustimer:

User config, to set the nitrous capacity (in seconds) on the vehicle, if it has nitrous by default.

hoodz:

Calculated value for the hood z position offset.

model:

Model name.

hasdct:

User config, to enable or disable the DCT audio effect when shifting on sequential.

cachedwheelradius:

Calculated value for the wheel radius.

thiscarhasnitrous:

User config, to enable or disable the nitrous by default on this vehicle.

safetopspeed:

Calculated value for the network sync of gearshifts.

hoodzoffset:

User config, to set a offset for the z axis on the C.H.A.S.E.R hood camera.

hoodyoffset:

User config, to set a offset for the y axis on the C.H.A.S.E.R hood camera.

interpolationspeedoffset:

User config, to set a offset for the C.H.A.S.E.R chase camera interpolation speed

maincamzoffset:

User config, to set a offset for the C.H.A.S.E.R chase z height

The "chaserfirststartup" command